0

Eclipse のエミュレーターで Android アプリをチェックアウトする際に少し問題があるようです。アプリの実行準備が整うと、次のメッセージが表示されます。

残念ながら App Name は停止しています。

コードは次のとおりです。

<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を有効にするには、[ウィンドウ]>[ビューの表示]>[LogCat]に移動します(表示されていない場合は、[その他]を押します... Androidでグループ化されています)

于 2013-02-16T13:55:51.413 に答える