6
我正在創建我的第一個android應用程序,但它根本不啓動。第一個Android測試項目不啓動
在我的src> android.SampleApp我創建了一個名爲Main.java的Java文件有:
public class Main extends Activity {
// Will be connected with the buttons via XML
public void myClickHandler(View view) {
switch (view.getId()) {
case R.id.btn1:
((EditText) findViewById(R.id.txtContent)).setText("Button 1 Clicked");
break;
case R.id.btn2:
((EditText) findViewById(R.id.txtContent)).setText("Button 2 Clicked");
break;
}
}
}
在我的資源>佈局> main.xml中:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello" android:id="@+id/txtContent"/>
<Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Button One" android:id="@+id/btn1"></Button>
<Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Button Two" android:id="@+id/btn2"></Button>
我的AndroidManifest.xml內容:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="android.SampleApp"
android:versionCode="1"
android:versionName="1.0">
<application android:icon="@drawable/icon" android:label="@string/app_name">
</application>
<uses-sdk android:minSdkVersion="7" />
我得到這個錯誤:
- [2010-02-02 1時46分26秒 - SampleApp] Android的推出!
- [2010-02-02 01:46:26 - SampleApp] adb正常運行。
- [2010-02-02 01:46:26 - SampleApp]找不到啓動器活動!
- [2010-02-02 01:46:26 - SampleApp]此次推出只會同步設備上的應用程序包!
- [2010-02-02一時46分26秒 - SampleApp]執行同步
3和4行被加亮紅色。
有人能帶領我的方向正確,讓應用程序在模擬器上顯示嗎?
的Android 2.1 SDK與Eclipse
你能編輯我的上方,並給予完成,因爲我不知道該把代碼放在哪裏。 – 2010-02-02 19:22:49
它位於'>和' '之間,它本身位於''標籤內。 –
2010-02-02 19:31:53
如果您在鏈接到的頁面中搜索「android.intent.action.MAIN」,您會看到一個很好的例子。 – 2010-02-02 19:50:52