程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程解疑 >> 編程-安卓,已在manifest中注冊了activity,但是仍然提示找不到activity

編程-安卓,已在manifest中注冊了activity,但是仍然提示找不到activity

編輯:編程解疑
安卓,已在manifest中注冊了activity,但是仍然提示找不到activity

先上logcat:
圖片說明

以下是manifest:

 <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.dell_pc.bigtest1" >

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.example.dell_pc.bigtest1.MainActivity"
            android:label="@string/app_name"
            android:theme="@style/AppTheme.NoActionBar" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <actiivty
            android:name="com.example.dell_pc.bigtest1.Activity1"
            android:theme="@style/AppTheme.NoActionBar"
            />
        <actiivty android:name="com.example.dell_pc.bigtest1.Activity2"
            android:theme="@style/AppTheme.NoActionBar"/>
        <actiivty android:name="com.example.dell_pc.bigtest1.Activity3"
            android:theme="@style/AppTheme.NoActionBar"
            />
        <activity android:name="com.example.dell_pc.bigtest1.Activity4"
            android:theme="@style/AppTheme.NoActionBar"/>
    </application>

</manifest>

我是在drawerlayout中的item點擊事件中打開其他activity的,貼下代碼:

 public void onItemClick(AdapterView<?> adapterView,View v,int position,long id)
    {
        Intent intent=new Intent();
        switch(position)
        {
            case 0:
                intent.setClass(this,Activity1.class);
                break;
            case 1:
                intent.setClass(this,Activity2.class);
                break;
            case 2:
                intent.setClass(this,Activity3.class);
                break;
            case 3:
                intent.setClass(this, Activity4.class);
                break;

        }
        startActivity(intent);


    }

}

圖片說明
上面的logcat就是在點擊了這個之後,出錯,然後得到的,請問怎麼解決?

另外這個drawerlayout中的listview只能顯示下面部分,並且不能滑動,請問怎麼解決?

最佳回答:


actiivty拼錯了,activity才對

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