2013-09-05 68 views
0

因此,我正在構建我的第一個android應用程序。試圖讓我的啓動畫面工作。但Splash.java是否顯示錯誤「起點不能被解析爲一個類型。起點無法解析爲

這裏是我的清單

<?xml version="1.0" encoding="utf-8"?> 
<manifest xmlns:android="http://schemas.android.com/apk/res/android" 
package="com.arjun.add" 
android:versionCode="1" 
android:versionName="1.0" > 

<uses-sdk 
    android:minSdkVersion="8" 
    android:targetSdkVersion="17" /> 

<application 
    android:allowBackup="true" 
    android:icon="@drawable/ic_launcher" 
    android:label="@string/app_name" 
    android:theme="@style/AppTheme" > 
    <activity 
     android:name=".Splash" 
     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=".StartingPoint" 
     android:label="@string/app_name" > 
     <intent-filter> 
      <action android:name="com.arjun.add.StartingPoint" /> 

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

</manifest> 

這裏是我的Splash.Java

package com.arjun.add; 

import android.app.Activity; 
import android.content.Intent; 
import android.os.Bundle; 

public class Splash extends Activity { 

@Override 
protected void onCreate(Bundle ArjunSharma) { 
    // TODO Auto-generated method stub 
    super.onCreate(ArjunSharma); 
    setContentView(R.layout.splash); 
    Thread timer = new Thread(){ 
     public void run(){ 
      try{ 
       sleep(5000); 
      } catch (InterruptedException e){ 
       e.printStackTrace(); 
      }finally{ 
       Intent openStartingPoint = new Intent(Splash.this, StartingPoint.class); 
       startActivity(openStartingPoint); 
      } 
     } 
    }; 
    timer.start(); 
} 

} 

希望你們能幫我出來

+2

'StartingPoint'應該是名你的下一個活動將是什麼類的。請再次檢查您的班級名稱。並嘗試「清理」和「構建」應用程序。 –

+0

什麼是'StartingPoint'? – m0skit0

回答

0

試試這個:

<?xml version="1.0" encoding="utf-8"?> 
<manifest xmlns:android="http://schemas.android.com/apk/res/android" 
package="com.arjun.add" 
android:versionCode="1" 
android:versionName="1.0" > 

<uses-sdk 
    android:minSdkVersion="8" 
    android:targetSdkVersion="17" /> 

<application 
    android:allowBackup="true" 
    android:icon="@drawable/ic_launcher" 
    android:label="@string/app_name" 
    android:theme="@style/AppTheme" > 
    <activity 
     android:name="com.arjun.add.Splash" 
     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="com.arjun.add.MainActivity" 
      android:label="@string/app_name" > 
    </activity> 
</application> 
</manifest> 

編輯:請注意,把MainActivity作爲起點,那就是閃屏後的第一項活動

希望它有助於

+0

嘿,是啊。漂亮的noob錯誤。這工作。謝謝 :) – user2751528

0

在你的清單中定義StartingPoint你有類定義爲android.intent.category.DEDAULT,應該是android.intent.category.DEFAULT。