1

画像のような横スクロールビューを作成したい水平スクロールビュー

Androidウィジェットで、複合セクションに水平スクロールビューウィジェットが見つかりましたが、使用方法がわかりません。助けてください

4

1 に答える 1

2

最初に作成xml fileして追加HorizontalScrollViewし、次に子としてこれに1つのレイアウトを追加します。次に、任意の番号を追加できます。新しく追加された子へのビューの、それはすべてのものを作りますscroll

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >
    <HorizontalScrollView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" >
        <RelativeLayout
            android:layout_width="fill_parent"
            android:layout_height="wrap_content" >
            <!--  child views here -->
        </RelativeLayout>
    </HorizontalScrollView>
</LinearLayout>
于 2012-10-05T06:35:52.290 に答える