2016-03-06 59 views
0

嘿傢伙,所以即時嘗試運行我的應用程序在Android工作室的模擬器時有問題。這是我得到的錯誤:意圖活動類不工作

Starting: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] cmp=com.example.dre.appli/com.example.dre.appli_app.LoginActivity } 
Error type 3 
Error: Activity class {com.example.dre.appli/com.example.dre.appli_app.LoginActivity} does not exist. 

我嘗試了一切,人們建議無濟於事。這裏是我的清單

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

    <!-- To auto-complete the email text field in the login form with the user's emails --> 
    <uses-permission android:name="android.permission.GET_ACCOUNTS" /> 
    <uses-permission android:name="android.permission.READ_PROFILE" /> 
    <uses-permission android:name="android.permission.READ_CONTACTS" /> 

    <application 
     android:allowBackup="true" 
     android:icon="@mipmap/ic_launcher" 
     android:label="@string/app_name" 
     android:supportsRtl="true" 
     android:theme="@style/AppTheme"> 



     <activity 
      android:name=".LoginActivity" 
      android:label="@string/app_name"> 
      <intent-filter> 
       <action android:name="android.intent.action.MAIN" /> 

       <category android:name="android.intent.category.LAUNCHER" /> 
      </intent-filter> 
     </activity> 


     <activity 
      android:name=".CreateAccount" 
      android:label="@string/title_activity_create_account" 
      android:theme="@style/AppTheme.NoActionBar"> 
      <intent-filter> 
       <action android:name="app.createaccount" /> 

       <category android:name="android.intent.category.LAUNCHER" /> 
      </intent-filter> 
     </activity> 

</application> 
</manifest> 
+1

你怎麼能有2像LAUNCHER一樣的活動? –

回答

1

我想你的LoginActivity有一個包com.example.dre.appli_app.LoginActivity

但你清單的包是不同的:

<manifest 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    package="com.example.wheretas.appli_app"> 
... 

嘗試將其設置com.example.dre.appli_app

+0

它們都被設置爲相同的包com.example.dre.appli_app – dre

+0

嘗試從您的.CreateAccount活動中移除 ...塊。 – yital9