开发者社区> 问答> 正文

requestWindowFeature(Window.FEATURE_NO_TITLE)

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
     requestWindowFeature(Window.FEATURE_NO_TITLE);####
    setContentView(R.layout.activity_main);


VFY: unable to resolve virtual method 11342: Landroid/view/ViewGroup;.onNestedScrollAccepted (Landroid/view/View;Landroid/view/View;I)V

我再用配置主题解决

<style name="AppBaseTheme" parent="Theme.AppCompat.Light">
</style>

<!-- Application theme. -->
<style name="AppTheme" parent="AppBaseTheme">
</style>
<!-- 定义不现实标题 -->
<style name="notitle">
 <item name="android:windowNoTitle">true</item>
</style>

清单里加

 android:allowBackup="true"
 android:icon="@drawable/img_1"
 android:label="@string/app_name"
 android:theme="@style/AppTheme" >
 android:name=".MainActivity"
 android:label="@string/app_name"
 android:theme="@style/notitle"##
 >
                又报错
                    java.lang.RuntimeException: Unable to start activity ComponentInfo{com.lzl.top01/com.lzl.top01.MainActivity}: java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity.
                第二种方法我前面一个项目都能用啊  这个就报错

展开
收起
爵霸 2016-06-20 09:03:02 2468 0
1 条回答
写回答
取消 提交回答
  • 方法一:将extends ActionBarActivity 改为 extends Activity 方法二:调用getSupportActionBar().hide();  原因:使用了appcompat_v7包下的ActionbarActivity
    
    2019-10-23 20:11:44
    赞同 展开评论 打赏
问答分类:
问答地址:
问答排行榜
最热
最新

相关电子书

更多
低代码开发师(初级)实战教程 立即下载
冬季实战营第三期:MySQL数据库进阶实战 立即下载
阿里巴巴DevOps 最佳实践手册 立即下载