0

フラグメントを処理する SectionPagerAdapter を持つ ViewPager があります。

フラグメントには次のレイアウトがあります。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="match_parent" >

    <TextView
        android:id="@+id/tvemptyview"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="5dp"
        android:background="@drawable/card_bg"
        android:text="@string/no_trans"
        android:textAppearance="?android:attr/textAppearanceMedium" />

    <ListView
        android:id="@+id/transactionlist"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_margin="10dp"
        android:divider="@null"
        android:dividerHeight="0dp" >
    </ListView>

    <RelativeLayout
        android:id="@+id/rLayout1"
        android:layout_width="fill_parent"
        android:layout_height="50dp"
        android:layout_alignParentBottom="true"
        android:background="@drawable/footer_shadow"
        android:orientation="horizontal" >

        <TextView
            android:id="@+id/tvMonth"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:layout_centerVertical="true"
            android:layout_toRightOf="@id/btn_dateback"
            android:text="test"
            android:textAppearance="?android:attr/textAppearanceMedium" />

    </RelativeLayout>

</RelativeLayout>

TextView でスワイプ ジェスチャ (左または右) をキャッチしようとしてtvMonthいますが、ViewPager から TextView 自体に Event をディスパッチする方法がまったくわかりません。フラグメントはスクロールし続けるだけです。

OnTouchListener を TextView にアタッチすると、認識はかなりうまくいきますが、とにかくタブが変わります。

どうすればこの問題を解決できますか?

4

1 に答える 1

0

textView 自体に onClickListener または touchListener を設定する必要があります。次に、タッチ イベントが TextView に自動的にディスパッチされます。

于 2014-03-24T14:04:44.993 に答える