简体   繁体   中英

Change action bar to transparent color to work on both Android 2 and Android 3

I get this nice piece of code from http://developer.android.com/resources/samples/ActionBarCompat/index.html , which able to make ActionBar GUI on both Android 2 and Android 3 platform.

However, I was wondering, had anyone tried to change the color of ActionBar . Note that, the following code will make crash at Android 2, as in Android 2, it doesn't have ActionBar .

public void onCreate(Bundle savedInstanceState) {           
    ...
    getActionBar().setBackgroundDrawable(getResources().getDrawable(R.drawable.ad_action_bar_gradient_bak));        
}

使用ActionBarSherlock就像魅力一样:)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM