@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)