我在我的應用程序的開始處添加了一個開始頁面,它持續5秒,但是當我這樣做時,它在setContentView(R.layout.splash)旁邊放置了一個「x」;並有一個XML文件,所以我不知道它爲什麼不工作。粗體的那一行是我遇到的麻煩。setContentView無法識別.xml頁面
package com.jslsoftware;
import android.R;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
public class ILearnSignActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.splash);
Thread logoTimer = new Thread(){
public void run(){
try{
sleep(5000);
Intent menuIntent = new Intent("com.jslsoftware.MENU");
startActivity(menuIntent);
}
finally{
finish();
}
}
};
logoTimer.start();
}
}
仍然面臨問題? – 2012-04-06 03:13:03