我在我的电脑上重新安装了 Windows,并尝试使用更新版本的 android studio 打开我的旧项目。
这是我的清单:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.linkr.chat"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="16"
android:targetSdkVersion="18" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:label="@string/app_name"
android:name=".Login" >
<intent-filter >
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
当我将 android:name=".Login" 行更改为 android:name=".Chat" 时,活动 Chat 会打开并且不会崩溃。但我想先打开登录,所以我使用 android:name=".Login",然后如果我点击按钮打开聊天,它就会崩溃。
我从 logcat 得到的错误是:
Caused by: android.content.ActivityNotFoundException: Unable to find explicit activity class {com.linkr.chat/com.linkr.chat.Chat}; have you declared this activity in your AndroidManifest.xml?
为什么它要我宣布这个?
非常感谢!