2013-06-24 73 views
-3

我下面的步驟爲android training google和我activity_main.xml就像第一個Android應用程序沒有運行

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:orientation="horizontal"> 
    <EditText android:id="@+id/edit_message" 
     android:layout_weight="1" 
     android:layout_width="0dp" 
     android:layout_height="wrap_content" 
     android:hint="@string/edit_message" /> 
    <Button 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:text="@string/button_send" /> 
</LinearLayout> 

我已經定義的提示字符串

<?xml version="1.0" encoding="utf-8"?> 
<resources> 

    <string name="app_name">My First App</string> 
    <string name="edit_message">Enter a message</string> 
    <string name="button_send">Send</string> 
    <string name="title_activity_main">mainActivity</string> 
    <string name="action_settings">Settings</string> 
    <string name="hello_world">Hello world!</string> 

</resources> 

AVD details

但是當我點擊在運行按鈕上,它不顯示活動!

+2

什麼問題?... – Ahmad

+0

對不起。看到我更新的問題 – Nitish

+0

請輸入密碼,否則忍不住 – Siddharth

回答

1

你有沒有把這個代碼在AndroidManifest文件..

<application 
    android:allowBackup="true" 
    android:icon="@drawable/icon" 
    android:label="@string/app_name" 
    android:theme="@style/AppTheme" > 
    <activity 
     android:name="YourActivityname" 
     android:label="@string/app_name" 
     android:screenOrientation="portrait" 
     android:theme="@android:style/Theme.NoTitleBar" > 
     <intent-filter> 
      <action android:name="android.intent.action.MAIN" /> 

      <category android:name="android.intent.category.LAUNCHER" /> 
     </intent-filter> 
    </activity> 
</application> 
1

MainActivity.java你插入了代碼嗎?

@Override 
protected void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.activity_main); 
} 
0

您不能運行從.xml文件的Android應用程序,你必須從一個.java文件運行。選擇運行方式> Android應用程序。還要確保你已經安裝了一個仿真器並準備就緒,或者確保你有一個真正的設備在連接並準備就緒的情況下運行。

相關問題