HorizontalScrollView 不滚动

问题描述 投票:0回答:1

我想制作一个表格,左侧有实心列,右侧有可水平滚动的可滚动列。 我将其分为两个不同的表格布局,并将正确的一个放在 HorizontalScollView 中。稍后我将动态添加所有这些列。 我面临的问题是 ScrollView 不知何故不滚动。它像它应该的那样从屏幕中突出,但在模拟器和我的手机上它根本不移动。

我是这样实现的:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <androidx.constraintlayout.widget.ConstraintLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_margin="5dp">
        <TableLayout
            android:id="@+id/TL_halteStellen"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            app:layout_constraintLeft_toLeftOf="parent"
            app:layout_constraintTop_toTopOf="parent"
            android:background="@drawable/table_border">

            <TableRow>
                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:textSize="30sp"
                    android:text="Haltestellen "
                    android:background="@drawable/tv_haltestelle"/>

            </TableRow>

            <TableRow>
                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:textSize="30sp"
                    android:text="Borken"
                    android:background="@drawable/tv_haltestelle"/>
            </TableRow>


        </TableLayout>

            <HorizontalScrollView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                app:layout_constraintLeft_toRightOf="@id/TL_halteStellen"
                app:layout_constraintTop_toTopOf="parent"
                android:orientation="horizontal">

                <TableLayout
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:background="@drawable/table_border">

                    <TableRow>
                        <TextView
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:paddingHorizontal="6dp"
                            android:text="06:35"
                            android:textSize="30sp"
                            android:background="@drawable/tv_haltestelle"/>
                        <TextView
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:paddingHorizontal="6dp"
                            android:text="06:35"
                            android:textSize="30sp"
                            android:background="@drawable/tv_haltestelle"/>
                        <TextView
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:paddingHorizontal="6dp"
                            android:text="06:35"
                            android:textSize="30sp"
                            android:background="@drawable/tv_haltestelle"/>
                        <TextView
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:paddingHorizontal="6dp"
                            android:text="06:35"
                            android:textSize="30sp"
                            android:background="@drawable/tv_haltestelle"/>
                    </TableRow>
                </TableLayout>
            </HorizontalScrollView>
    </androidx.constraintlayout.widget.ConstraintLayout>
</RelativeLayout>

我该如何修复它或者有更好的方法来实现这个设计吗?

我尝试了网上能找到的所有方法并重写了好几次

android android-scrollview horizontalscrollview
1个回答
0
投票

如果 HorizontalScrollView 不滚动,可以尝试以下一些操作: 重新创建结构元素:重新创建直至根画布的结构元素。 添加透明面板:在 HorizontalScrollview 顶部添加透明面板。 添加左右边距:给ID为group_container的LinearLayout添加左右边距。

© www.soinside.com 2019 - 2024. All rights reserved.