0

左右スクロールを実装したい。ユーザーがテキストビューの配列で販売する前に、またはその前に表示するために左または右を実行している場合。このslidingDrawerには使用する必要があると思いますが、ボタンは使用したくありません。あなたがそれを行う方法を調べるためにいくつかのコードを送ることができれば私はうれしいです。

ここに私のコード:

 <?xml version="1.0" encoding="utf-8"?>
<SlidingDrawer xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/SlidingDrawer"
    android:layout_width="wrap_content"
    android:layout_height="250dip"
    android:content="@+id/contentLayout"
    android:handle="@+id/slideButton"
    android:orientation="vertical"
    android:padding="10dip" >

    <LinearLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/LinearLayout1"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:orientation="vertical" >

        <TextView
            android:id="@+id/title"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:textSize="20sp"
            android:textStyle="bold" />

        <TextView
            android:id="@+id/pubdate"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:textSize="20sp"
            android:textStyle="bold" />

        <TextView
            android:id="@+id/text"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textSize="15sp"
            android:textStyle="bold" />
    </LinearLayout>

</SlidingDrawer>
4

1 に答える 1

0

多くのコードやアイコンをインポートせずにそれを非常に簡単に行うために....私が好きな最も簡単な方法はこれです:

http://misha.beshkin.lv/android-swipe-gesture-implementation/

于 2013-01-19T13:30:24.213 に答える