10列3行に配置する30個の画像ボタンがありますが、スクロールビューを配置することができません。私を助けてください。
質問する
88 次
1 に答える
0
使用するGridLayout
<?xml version="1.0" encoding="utf-8"?>
<HorizontalScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" xmlns:app="http://schemas.android.com/apk/res/com.astuetz.viewpager.extensions.example">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<android.support.v7.widget.GridLayout
android:layout_width="match_parent"
android:layout_height="900dp" >
<!-- your buttons -->
</android.support.v7.widget.GridLayout>
</LinearLayout>
</HorizontalScrollView>
于 2013-10-08T06:56:25.457 に答える