标签:界面 sed int ret getting 而且 hive pointer manifest
在使用 ActionBar的时候,有时候会爆出空指针异常,这是由于应用没有获取到 ActionBar 导致的,而导致应用没有获取到 ActionBar 的原因比較多。所以我们以下就来总结一下 ActionBar 获取不到的错误原因。
@android:style/Theme.NoTitleBar
和<item name="windowActionBar">false</item>
<item name="android:windowNoTitle">true</item>
这种属性都会使应用中的 ActionBar消失,切记。假设你要使用ActionBar,则一定要清除掉这些Theme属性设置,假设你的项目中 res 文件夹下除了 values 文件夹外。还有其它的res/values-v11,style/values-v14等,则这些文件夹中的 styles.xml 都须要检查一下,最后再检查下 Activity 代码中是否动态设置了全屏或者不显示TitleBar,代码例如以下:
//requestWindowFeature(Window.FEATURE_NO_TITLE);
//getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
假设大家有其它的有关 getActionBar() 为null的问题,方法和经验。欢迎讨论交流。
http://vcsos.com/Article/pageSource/150125/20150125093506.shtml
http://stackoverflow.com/questions/27959107/getting-the-null-pointer-exception-in-the-getactionbar-method/27960390
http://www.apkbus.com/android-130755-1-1.html
http://www.cnblogs.com/shortboy/archive/2013/04/18/3029029.html
http://stackoverflow.com/questions/6867076/getactionbar-returns-null
http://blog.csdn.net/yueqinglkong/article/details/39577749
http://stackoverflow.com/questions/8499181/actionbar-throws-nullpointerexception
http://stackoverflow.com/questions/28255552/nullpointerexception-caused-by-getactionbar
【Android】getActionBar()为null的解决方法总结
标签:界面 sed int ret getting 而且 hive pointer manifest
原文地址:http://www.cnblogs.com/lytwajue/p/7224212.html