1

我用 XML 编写了一个应用程序,但我仍然没有用 java 代码编写类。但是模拟器可以按名称显示我的应用程序,然后显示“不幸的是,应用程序已停止”。我必须为这个问题做些什么??!

这是我的代码:

<?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"/>
<TextView 
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="@string/TextView2"/>
<Button
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="@string/Button"
    />

</LinearLayout> 
4

2 回答 2

0

您的应用程序中必须至少有一个活动(Java 类),以便 manifest.xml 可以识别并运行它。

于 2013-01-23T14:07:05.860 回答
0

您必须使用活动来显示此 xml:

public class MainActivity extends Activity {

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

如您所见,您的 xml 由 setContentView 方法调用。

此活动必须在您的 AndroidManifest.xml 中声明

<activity
        android:name="YOURPACKAGE.ACTIVITY_NAME"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
于 2013-01-23T14:07:33.723 回答