问题描述
- 安卓,已在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才对
解决方案二:
<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.Activity1"
android:theme="@style/AppTheme.NoActionBar"
/>
<activity android:name="com.example.dell_pc.bigtest1.Activity2"
android:theme="@style/AppTheme.NoActionBar"/>
<activity android:name="com.example.dell_pc.bigtest1.Activity3"
android:theme="@style/AppTheme.NoActionBar"
/>
解决方案三:
android:name="com.example.dell_pc.bigtest1.Activity1"
android:theme="@style/AppTheme.NoActionBar"
/>
android:theme="@style/AppTheme.NoActionBar"/>
android:theme="@style/AppTheme.NoActionBar"
/>
这两个标签的activity都是错的
解决方案四:
android:name="com.example.dell_pc.bigtest1.Activity1"
android:theme="@style/AppTheme.NoActionBar"
/>
android:theme="@style/AppTheme.NoActionBar"/>
android:theme="@style/AppTheme.NoActionBar"
/>
这两个标签的activity都是错的
解决方案五:
android:name="com.example.dell_pc.bigtest1.Activity1"
android:theme="@style/AppTheme.NoActionBar"
/>
android:theme="@style/AppTheme.NoActionBar"/>
android:theme="@style/AppTheme.NoActionBar"
/>
avtivity 写错了
解决方案六:
既然生命了,肯定是类的路径找不到,打开这个Activity,把首行的包名+activity名替换到mainfest中。celan一下,再试试。