-3

我正在按照android 培训 google中的步骤进行操作,我activity_main.xml就像

    <?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 详细信息

但是当我点击运行按钮时,它没有显示任何活动!

4

3 回答 3

1

MainActivity.java你插入代码了吗?

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
}
于 2013-06-24T03:17:34.737 回答
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>
于 2013-06-24T04:54:45.523 回答
0

您不能从 .xml 文件运行 Android 应用程序,您必须从 .java 文件运行。选择运行方式 > Android 应用程序。还要确保您已设置并准备好模拟器,或已连接并准备好运行的真实设备。

于 2014-07-25T16:24:15.250 回答