GridLayout を水平方向にスクロールするのに問題があります。
同様の質問Gridlayout + ScrollViewを見つけました。その方法を試しましたが、うまくいきませんでした。
多くのテーブルを切り取ります (1 から 20 までのすべてのテーブルを表示することになっていたため)。
ここにxmlファイルがあります
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:padding="16dp" >
<android.support.v7.widget.GridLayout
android:id="@+id/table_mapGrid"
android:layout_width="250dp"
android:layout_height="wrap_content" />
</LinearLayout>
</ScrollView>
<include layout="@layout/cell_list_loading" />
<TextView
android:id="@+id/table_errorView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_marginLeft="20dp"
android:text="@string/message_error_connection"
android:visibility="invisible" />
</FrameLayout>
動的コンテンツを表示し、列と行の数を変えてテーブル間に空白を入れたいと考えています。これは私が達成しましたが、GridLayoutの幅がコンテナの幅よりも大きくなったときに問題が発生し、水平スクロールを使用して解決したかったのですが、うまくいかないようです...
なにか提案を?