1. 加载完视图后,再去获取:
写在setContentView()后面。
2.sdk版本:
Actionbar的主题在3.0以后才有,使用的时候要确保,最低的版本不能小于3.0。
<uses-sdk android:minSdkVersion="11" android:targetSdkVersion="17" />3.配置清单中,添加的主题:
android:theme="@style/AppTheme" >其父主题要具有ActionBar,例如:
<style name="AppTheme" parent="@android:style/Theme.Holo.Light">
//getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
values-v11中主题:
<resources> <!-- Base application theme for API 11+. This theme completely replaces AppBaseTheme from res/values/styles.xml on API 11+ devices. --> <style name="AppBaseTheme" parent="android:Theme.Holo.Light"> <!-- API 11 theme customizations can go here. --> </style> </resources>