Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

i want to work with action bar in android. for this i use

getActionBar().setHomeButtonEnabled(true);

below the SetContentView . but is gives me null pointer exception. when i try only getActionBar() it works fine.

please help me.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
992 views
Welcome To Ask or Share your Answers For Others

1 Answer

If your activity does not have a title bar the method getActionBar() can return null.

You have two options to fix this:

1- Add getWindow().requestFeature(Window.FEATURE_ACTION_BAR); before setContentView

2- In your Manifest specify a Theme that supports ActionBar

Also make sure that you are targeting the right android version e.g. <uses-sdk android:minSdkVersion="11" />


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...