解决安卓添加Theme.NoTitleBar报错问题

  1.     <application
  2.         android:allowBackup="true"
  3.         android:icon="@drawable/ic_launcher"
  4.         android:label="@string/app_name"
  5.         android:theme="@style/AppTheme" >
  6.         <activity
  7.             android:name="com.gdin.example.MainActivity"
  8.             android:label="@string/app_name"
  9.             android:theme="@android:style/Theme.Black.NoTitleBar">  <!--报错-->
  10.             <intent-filter>
  11.                 <action android:name="android.intent.action.MAIN" />

  12.                 <category android:name="android.intent.category.LAUNCHER" />
  13.             </intent-filter>
  14.         </activity>
  15.     </application>
EXCEPTION: main
    java.lang.RuntimeException: Unable to start activity ComponentInfo{cn.eoe.activitylc/com.gdin.example.MainActivity}: java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity.
究其原因,是因为SDK版本的问题,支持最低版本低于4.0时会出线此错误提示
解决方法一:
从xml去掉Activity的theme,在setContentView之前getWindow().requestFeature(Window.FEATURE_NO_TITLE);
解决方法二:
当你使用自定义标题时,
ActionBar actionBar = this.getActionBar();
actionBar.setCustomView(R.layout.title);
actionBar.setDisplayShowCustomEnabled(true);
actionBar.setDisplayShowHomeEnabled(false);
actionBar.show();
对应style.xml文件,作如下示例修改(具体看个人实际情况)
<style name="AppBaseTheme" parent="android:Theme">
         <item name="android:windowContentOverlay">@drawable/nonecolor</item>
 <item name="android:windowTitleSize">40dp</item>
 <item name="android:windowTitleBackgroundStyle">@style/appbg</item>
    </style>
然后就可应用android:theme="@android:style/Theme.Black.NoTitleBar" 




你可能感兴趣的:(xml,安卓,application)