0

在 Eclipse 的模拟器上查看我的 Android 应用程序时,我似乎遇到了一些问题。当应用程序准备好运行时,我收到一条消息:

不幸的是,应用名称已停止。

这是代码:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" >

    <TabHost
        android:id="@android:id/tabhost"
        android:layout_width="match_parent"
        android:layout_height="match_parent" >

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical" >

            <TabWidget
                android:id="@android:id/tabs"
                android:layout_width="match_parent"
                android:layout_height="wrap_content" >
            </TabWidget>

            <FrameLayout
                android:id="@android:id/tabcontent"
                android:layout_width="match_parent"
                android:layout_height="match_parent" >

                <LinearLayout
                    android:id="@+id/tab1"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent" >

                    <Textview
                        android:id="@+id/textview1"
                        android:layout_height="wrap_content"
                        android:layout_width="fill_parent"
                        android:text="Welcome to Ambius" >
                     </Textview>

                </LinearLayout>

                <LinearLayout
                    android:id="@+id/tab2"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent" >
                </LinearLayout>

                <LinearLayout
                    android:id="@+id/tab3"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent" >
                </LinearLayout>
            </FrameLayout>
        </LinearLayout>
    </TabHost>

</FrameLayout>
4

1 回答 1

0

为了使选项卡工作,您还需要 java 文件中的一些代码。

看看这些例子:

要启用 LogCat,请转到 Window > Show View > LogCat(如果它不可见,请按 Other... 它在 Android 下分组)

于 2013-02-16T13:55:51.413 回答