1

外部ビューからの制御を備えたシンプルなビュー ページャーを実装したいと考えています。

ここにモックアップがあります:

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 のような指で制御される任意のビューである可能性があります。

4

0 に答える 0