Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
966 views
in Technique[技术] by (71.8m points)

android - getAction Bar gives null pointer exception

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

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

1 Answer

0 votes
by (71.8m points)

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" />


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...