底部的按钮不完全可见[TableLayout]

时间:2017-04-04 13:45:19

标签: android xml

我正在尝试使用TableRow添加按钮,但最后一行中的两个按钮在底部被剪切或者不完全可见。为了让这些按钮完全可见,应该怎么做?

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="in.ashirvad.dhruv.krust.Technical">
    <ScrollView
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

    <TableLayout
        android:id="@+id/TableLayout1"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:weightSum="4" >

        <TableRow
            android:id="@+id/tableRow1"
            android:layout_width="0dip"
            android:layout_height="0dip"
            android:layout_weight="2"
            android:gravity="center" >

            <LinearLayout
                android:layout_width="0dip"
                android:layout_height="match_parent"
                android:layout_weight="1"
                android:gravity="center"
                android:orientation="vertical" >

                <Button
                    android:id="@+id/button1"
                    android:layout_width="match_parent"
                    android:layout_height="250dp"
                    android:layout_margin="4dp"
                    android:background="@color/colorAccent"
                    android:text="Button 1"
                    android:textColor="@android:color/holo_orange_dark" />
            </LinearLayout>

        <LinearLayout
            android:layout_width="0dip"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:gravity="center"
            android:orientation="vertical" >

            <Button
                android:id="@+id/button2"
                android:layout_margin="4dp"
                android:layout_width="match_parent"
                android:layout_height="250dp"
                android:background="@color/colorAccent"
                android:text="Button 2" />
        </LinearLayout>
    </TableRow>

    <TableRow
        android:id="@+id/tableRow2"
        android:layout_width="0dip"
        android:layout_height="0dip"
        android:layout_weight="2"
        android:gravity="center" >

        <LinearLayout
            android:layout_width="0dip"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:gravity="center"
            android:orientation="vertical" >

            <Button
                android:id="@+id/button3"
                android:layout_width="match_parent"
                android:layout_height="250dp"
                android:layout_margin="4dp"
                android:background="@color/colorAccent"
                android:text="Button 3" />
        </LinearLayout>

        <LinearLayout
            android:layout_width="0dip"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:gravity="center"
            android:orientation="vertical" >

            <Button
                android:id="@+id/button4"
                android:layout_width="match_parent"
                android:layout_height="250dp"
                android:layout_margin="4dp"
                android:background="@color/colorAccent"
                android:text="Button 4" />
        </LinearLayout>
    </TableRow>


    <TableRow
        android:id="@+id/tableRow3"
        android:layout_width="0dip"
        android:layout_height="0dip"
        android:layout_weight="2"
        android:gravity="center" >

        <LinearLayout
            android:layout_width="0dip"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:gravity="center"
            android:orientation="vertical" >

            <Button
                android:id="@+id/button5"
                android:layout_width="match_parent"
                android:layout_height="250dp"
                android:layout_margin="4dp"
                android:background="@color/colorAccent"
                android:text="Button 5" />
        </LinearLayout>

        <LinearLayout
            android:layout_width="0dip"
            android:layout_height="match_parent"
            android:layout_weight="1.0"
            android:gravity="center"
            android:orientation="vertical" >

            <Button
                android:id="@+id/button6"
                android:layout_width="match_parent"
                android:layout_height="250dp"
                android:background="@color/colorAccent"
                android:layout_margin="4dp"
                android:text="Button 6" />
        </LinearLayout>
    </TableRow>
</TableLayout>


</ScrollView>

enter image description here

P.S.-我尝试了一个没有导航栏但没有工作的设备。

1 个答案:

答案 0 :(得分:0)

删除ScrollView,所有6个按钮都将出现在屏幕上