2010-02-02 54 views
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" /> 

我得到這個錯誤:

  1. [2010-02-02 1時46分26秒 - SampleApp] Android的推出!
  2. [2010-02-02 01:46:26 - SampleApp] adb正常運行。
  3. [2010-02-02 01:46:26 - SampleApp]找不到啓動器活動!
  4. [2010-02-02 01:46:26 - SampleApp]此次推出只會同步設備上的應用程序包!
  5. [2010-02-02一時46分26秒 - SampleApp]執行同步

3和4行被加亮紅色。

有人能帶領我的方向正確,讓應用程序在模擬器上顯示嗎?

的Android 2.1 SDK與Eclipse

回答

11

你缺少你<activity>標籤下面的清單檔案中的:

 <intent-filter . . . > 
      <action android:name="android.intent.action.MAIN" /> 
      <category android:name="android.intent.category.LAUNCHER" /> 
     </intent-filter> 

欲瞭解更多信息請參閱here

+0

你能編輯我的上方,並給予完成,因爲我不知道該把代碼放在哪裏。 – 2010-02-02 19:22:49

+2

它位於'>和''之間,它本身位於''標籤內。 – 2010-02-02 19:31:53

+0

如果您在鏈接到的頁面中搜索「android.intent.action.MAIN」,您會看到一個很好的例子。 – 2010-02-02 19:50:52