I use ViewSwitcher like this:
<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>
And plan to use 4 children more in that ViewSwitcher. Now, how to switch between say view1 and view 4, or view1 and view3 using .showNext() or .showPrevious()? Is there a way to set what view goes next or previous?