表格视图未正确显示SeekBar Android

时间:2012-12-03 15:13:33

标签: android xml android-layout

我很难让我的SeekBar填写我的桌面视图。

这就是它的样子:

Table View

我的代码:

            <TableRow
                android:layout_width="fill_parent"
                android:layout_height="wrap_content" >
                <TextView
                    android:id="@+id/tvneg7"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="e" />

                <SeekBar
                    android:id="@+id/totalE"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"
                    android:max="5" />

                <TextView
                    android:id="@+id/tvneg8"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="0"/>
            </TableRow>

1 个答案:

答案 0 :(得分:0)

我添加了

                    android:layout_weight="1"

并修复了它