程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> android-requestWindowFeature(Window.FEATURE_NO_TITLE)

android-requestWindowFeature(Window.FEATURE_NO_TITLE)

編輯:編程綜合問答
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.

                    第二種方法我前面一個項目都能用啊  這個就報錯

                    大神們幫看看

最佳回答:


結果一樣,應用直接掛掉

05-25 21:29:58.115: W/dalvikvm(1922): Unable to resolve superclass of Lcom/lzl/top01/MainActivity; (985)
05-25 21:29:58.115: W/dalvikvm(1922): Link of class 'Lcom/lzl/top01/MainActivity;' failed
05-25 21:29:58.115: W/dalvikvm(1922): Link of class 'Lcom/lzl/top01/MainActivity;' failed
05-25 21:29:58.115: D/AndroidRuntime(1922): Shutting down VM
05-25 21:29:58.115: W/dalvikvm(1922): threadid=1: thread exiting with uncaught exception (group=0xb3cd3b20)

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved