我在我的電腦上重新安裝了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 =,活動聊天開闢了和沒有按不會崩潰。但我想登錄首先打開,所以我使用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?
它爲什麼要我申報呢?
非常感謝!
omg謝謝! :D我不敢相信我是如此愚蠢。我對Java和Android非常陌生。非常感謝! – calmandniceperson