解决方案 »

  1.   

    api版本的问题,不知道你是哪个版本,没有定义这个theme
      

  2.   

    this.requestWindowFeature(Window.FEATURE_NO_TITLE);-----------------------------------------------------------------android:theme="@style/AppTheme" >
    <!-- Application theme. -->
    <style name="AppTheme" parent="AppBaseTheme">
           <item name="android:windowActionBar">false</item>
       <item name="android:windowNoTitle">true</item>
    </style>---------------------------------------------------------------------------getActionBar().setTitle("");
      

  3.   

    Theme.NoTitleBar出问题,你的版本是4.0以下吧?假如我没记错的话3.0以上有的这个东西。你把API版本改为4.0以上的试试,应该就可以了。
      

  4.   

    我跟你遇到一样的问题,想按教程改theme,结果报错了。后来只能用@style/Theme.AppCompat下面的配置才行
      

  5.   

    http://bbs.csdn.net/topics/390911113?page=1#post-398405208
    跟你一样
      

  6.   


    我就是继承了这个报错的,改成Activity就可以了