带有 getActionBar 的 NullPointException
我的平板电脑界面(Android > 3)有一个非常奇怪的行为。 当我启动它时,它就像一个 Android 2* 界面,标题位于底部。 当然,当我调用 getActionBar() 时,它会返回 null。
我的 min-sdk 和target-sdk 设置得很好,我使用 SDK Android 3.0 (11)。我哪里错了?
public class MainScreenActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.mainlayout);
ActionBar bar = getActionBar();
bar.setBackgroundDrawable(getResources().getDrawable(R.drawable.actionbar));
最后一行我得到这个错误:
Caused by: java.lang.NullPointerException
E/AndroidRuntime( 9082): at com.shoppingscanner.tablet.MainScreenActivity.onCreate(MainScreenActivity.java:21)
E/AndroidRuntime( 9082): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1050)
E/AndroidRuntime( 9082): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1782)
E/AndroidRuntime( 9082): ... 11 more
我的清单(使用Android 3.0):
<uses-sdk
android:minSdkVersion="5"
android:targetSdkVersion="11" />
即使minSdk是11,我也有这种行为。
谢谢 !
I have a really strange behaviour with my tablet interface (Android > 3).
When I launch it, it's like a Android 2* interface with the title at the bottom.
And of course when I call the getActionBar() it returns a null.
My min-sdk & target-sdk are well set and I use the SDK Android 3.0 (11). Where am I wrong ?
public class MainScreenActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.mainlayout);
ActionBar bar = getActionBar();
bar.setBackgroundDrawable(getResources().getDrawable(R.drawable.actionbar));
With the last line I get this error :
Caused by: java.lang.NullPointerException
E/AndroidRuntime( 9082): at com.shoppingscanner.tablet.MainScreenActivity.onCreate(MainScreenActivity.java:21)
E/AndroidRuntime( 9082): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1050)
E/AndroidRuntime( 9082): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1782)
E/AndroidRuntime( 9082): ... 11 more
My Manifest (Android 3.0 used) :
<uses-sdk
android:minSdkVersion="5"
android:targetSdkVersion="11" />
Even if the minSdk is 11, I have this behaviour.
Thanks !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您还需要“活动”窗口的标题可见。你可以寻求帮助
此处
You also need your Activity's window to have the title visible. you can take help from
here