我想在我的android手機上運行一個簡單的程序hello world
。 但應用程序意外停止。 apk
文件很容易安裝,但並未運行。 我不明白爲什麼會這樣爲什麼android手機沒有運行我的應用程序?
helloWorld.java
包com.hellos;
import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;
public class HelloAndroid extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
TextView tv = new TextView(this);
tv.setText("Hello, Android");
setContentView(tv);
}
}
是它在模擬器中運行? – Abhi
LogCat說什麼? – DonGru
它有時會在eclipse ide上成功運行,有時會顯示模擬器-5554取消錯誤 –