1

ViewSwitcher を次のように使用します。

<ViewSwitcher
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/content_popup"
    android:visibility="invisible"
    android:layout_centerInParent="true">

    <include layout="@layout/content_popup_stub" android:id="@+id/content_general"/>
    <include layout="@layout/video_select_popup_stub" android:id="@+id/content_select_video"/>

</ViewSwitcher>   

その ViewSwitcher でさらに 4 つの子を使用する予定です。では、 .showNext()または.showPrevious( )を使用して、view1 と view 4、または view1 と view3 を切り替えるにはどうすればよいでしょうか。次または前のビューを設定する方法はありますか?

4

1 に答える 1