画像のような横スクロールビューを作成したい
Androidウィジェットで、複合セクションに水平スクロールビューウィジェットが見つかりましたが、使用方法がわかりません。助けてください
画像のような横スクロールビューを作成したい
Androidウィジェットで、複合セクションに水平スクロールビューウィジェットが見つかりましたが、使用方法がわかりません。助けてください
最初に作成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>