如何在viewFlipper中找到当前视图位置..
假设它是viewFlipper
中的最后一个或第一个孩子 <ViewFlipper
android:id="@+id/imageFrames"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@android:drawable/screen_background_dark" >
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"><RelativeLayout>
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"><RelativeLayout>
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"><RelativeLayout>
</ViewFlipper>
答案 0 :(得分:2)
您可以使用viewFlipper.getDisplayedChild()
。