7

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の幅がコンテナの幅よりも大きくなったときに問題が発生し、水平スクロールを使用して解決したかったのですが、うまくいかないようです...

なにか提案を?

4

2 に答える 2

11

さて、私は解決策を見つけました

Android ScrollView は VerticalScrollView としてのみ機能するようです (名前は Horizo​​ntalScrollView ほど直感的ではありません)。

したがって、何かを垂直方向および水平方向にスクロール可能にするには、(Vertical)ScrollView を Horizo​​ntalScrollView 内にネストするか、このようにその逆にする必要があります。

<ScrollView
    android:layout_width="match_parent"
    android:layout_height="wrap_content">
    <HorizontalScrollView
        android:layout_width="wrap_content"
        android:layout_height="match_parent">

            <!-- Your content here -->

     </HorizontalScrollView>
</ScrollView>
于 2013-03-09T21:12:45.223 に答える
1

ネストされた Horizo​​ntalScrollView / ScrollView では、同時に両方向にスクロールすることはできません。私はこの問題を抱えていて、そのためのカスタム コンポーネントを作成しました。

https://gist.github.com/androidseb/9902093

于 2014-03-31T21:20:45.840 に答える