不幸的是,app已停止在Android Emulator - Eclipse中

时间:2012-10-22 15:52:17

标签: java android eclipse android-tabhost android-tabs

我似乎在Eclipse上的模拟器上检查我的Android应用程序时遇到了一些问题。当应用程序准备好运行时,我收到一条消息:不幸的是App Name已停止。

这是代码:     

<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>

感谢您的帮助..

凯文

1 个答案:

答案 0 :(得分:0)

为了使标签工作,你还需要一些java文件中的代码。

查看以下示例:

启用LogCat go window&gt;显示视图&gt; LogCat(如果不可见,按其他...在Android下分组)