我正在測試一個簡單的hello應用程序,它並未在仿真器上啓動。沒有錯誤,控制檯是這樣的:Android應用程序未在仿真器上啓動
[2010-11-16 21:26:06 - Hello World] ------------------------------
[2010-11-16 21:26:06 - Hello World] Android Launch!
[2010-11-16 21:26:06 - Hello World] adb is running normally.
[2010-11-16 21:26:06 - Hello World] Performing com.hello.HelloWorld.HelloWorld activity launch
[2010-11-16 21:26:09 - Hello World] Launching a new emulator with Virtual Device 'VirtualDevice2.2'
模擬器啓動,屏幕出現鎖定,我的應用程序無法啓動。
試圖解鎖,並去發射器尋找我的應用程序,它不存在。
任何人都可以幫助我解決這個問題嗎?
謝謝。
代碼:
package com.hello.HelloWorld;
import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;
public class HelloWorld extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle icicle) {
super.onCreate(icicle);
// We want to view some very simple text, so we need a TextView
TextView tv = new TextView(this);
// Put some text to the newly created TextVIew
tv.setText("Hello Android");
// Tell our App to display the textView
this.setContentView(tv);
}
}
清單:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
android:versionCode="1"
android:versionName="1.0" package="com.hello.HelloWorld">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".HelloWorld"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-sdk android:minSdkVersion="8" />
</manifest>
聽起來像一個明顯的問題。介意發佈它? – phobos51594 2010-11-16 22:04:25
<?xml version =「1.0」encoding =「utf-8」?> intent-filter> application> –
JEagle
2010-11-16 22:12:51
您可以在發佈問題時按ctrl + k來標記清單(當然包括任何xml),以避免顯示空白。 – 2010-11-16 22:27:23