Как сделать горизонтально прокручиваемый TableLayout? - PullRequest
0 голосов
/ 11 марта 2020

У меня есть прокручиваемый вид / макет с макетом ограничения.

Внутри этого макета у меня есть много других вещей. В нижней части макета мне нужен Tablelayout, который я создаю программно.

Как сделать горизонтальную прокрутку TableLayout?

<ScrollView
            android:id="@+id/testlay"
            android:layout_width="match_parent"
            android:layout_height="400dp"
            android:layout_marginTop="5dip"
            android:layout_marginStart="60dp"
            android:fillViewport="false"
            android:scrollbarStyle="outsideInset"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toBottomOf="@+id/linearLayoutProductTableHeader">

            <TableLayout
                android:id="@+id/linearLayoutProductTable"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:clickable="true"
                android:focusable="true"
                android:gravity="center"
                android:isScrollContainer="true"
                android:stretchColumns="*"
                tools:ignore="MissingConstraints">

            </TableLayout>
        </ScrollView>

Я тоже пытался использовать HorizontalLayout внутри ScrollView, но это не работает.

Ответы [ 2 ]

0 голосов
/ 11 марта 2020

Хорошо, я думаю, что проблема в том, что я добавляю строки и столбцы таблицы программно.

0 голосов
/ 11 марта 2020

Вот как я это реализовал и у меня работает:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
 <ScrollView 
        android:id="@+id/layout" 
        android:layout_height="match_parent"         
        android:scrollbars="horizontal|vertical" 
        android:layout_width="match_parent"     
        android:layout_marginTop="5dip"     
        android:scrollbarStyle="outsideInset"
        android:fillViewport="true"> 
  <HorizontalScrollView 
    android:id="@+id/horizontalView" 
    android:layout_height="wrap_content"     
    android:scrollbars="horizontal|vertical" 
    android:layout_width="wrap_content"     
    android:layout_marginTop="5dip">
           <TableLayout
                 android:layout_width="match_parent"
                 android:layout_height="match_parent"
                android:id="@+id/tlGridTable" >   
           </TableLayout>
</HorizontalScrollView>
</ScrollView>

</LinearLayout>
...