我想用外部视图控制实现简单的视图寻呼机。
这是样机:
view_with_pager.xml :
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<View android:layout_width="match_parent"
android:layout_height="100dp"
android:background="@android:color/darker_gray"
android:id="@+id/control_header"
/>
<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_below="@+id/control_header"
android:layout_width="match_parent"
android:layout_height="match_parent" >
</android.support.v4.view.ViewPager>
</RelativeLayout>
我的目的是仅使用 control_header 控制视图寻呼机。也许有任何简单的方法来实现这个功能。谢谢
PS我只是例如添加了水平滚动条。它可以是任何用手指控制的视图,例如 ViewPager。