水平方向にスクロールするビューのリストが必要なので、LinearLayout を HorizontalScrollView に配置し、LinearLayout に要素を追加しました。すべて問題ありませんが、奇妙なマージン/パディングがあります(それが何であるかはわかりません)
これは左に完全にスクロールされたビューです - 最初のアイテムは親の半分に乗っています
そして、これは右側に完全にスクロールされたものです - 右側の奇妙なパディング
http://korniltsev.ru/m/gyazo/4d093939766fe.png
これは私のxmlです:
<HorizontalScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:id="@+id/container"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="center"/>
</HorizontalScrollView>
アイテム:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="150dp"
android:layout_height="match_parent"
>
<FrameLayout
android:layout_width="140dp"
android:layout_height="50dp"
android:background="@drawable/bg_payment_system_item"
android:layout_centerInParent="true"
>
<ImageView
android:id="@+id/icon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
/>
</FrameLayout>
<Button
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"/>
</RelativeLayout>