0

layout.xml ファイルにいくつかのレイアウトをロードするアクティビティがあります。最初の LinearLayout は、すべてのビューを一緒にホストします。2 番目の線形レイアウトは、2 つのラベルを一緒にホストします。Relative レイアウトは、いくつかのラベルと、読み込まれたときに項目を設定する ListView をホストします。アクティビティ内の他のレイアウトに影響を与えることなく、RelativeLayout から別のレイアウトへの「移行」を実現することで、ナビゲーションを改善したいと考えています。つまり、ListView (OnItemClickListener) によって入力された行の 1 つをクリックすると、このイベント リスナーは現在の RelativeLayout を新しいレイアウトに置き換えます。

これを達成するためのアイデアはありますか?

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <LinearLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingTop="10dp"
        android:paddingBottom="10dp"
        android:background="#FFDECE"
        android:orientation="horizontal" >

        <TextView
            android:id="@+id/textView1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="5dp"
            android:text="Date"
            android:layout_weight="0.5"
            android:textAppearance="?android:attr/textAppearanceLarge" />

        <TextView
            android:id="@+id/textView2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Gang Code"
            android:layout_weight="1.0"
            android:textAppearance="?android:attr/textAppearanceLarge" />

    </LinearLayout>

    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:paddingBottom="10dp">

        <TextView
            android:id="@+id/tvEmpyName"
                ....

    </RelativeLayout>

    <ListView
        android:id="@+id/lvATRDisplay"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >
    </ListView>

</LinearLayout>
4

1 に答える 1

0

そのためにViewFlipperを使用できます。setDisplayedChild(int)を使用して、特定のレイアウト、つまり子を表示します

例えば

setDisplayChild(0);
于 2012-12-17T04:34:28.883 に答える