如何在TableRow中使用Android填充宽度制作切换按钮

时间:2015-04-25 12:43:07

标签: android button switch-statement

我需要使用Switch但我需要它来填充TableRow,它会一半为ON,一半为OFF。

我怎么能实现这一目标?试过很多组合但没有成功。

我有:

<TableRow
android:id="@+id/tableRow6"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >

<Switch
    android:id="@+id/switchStatus"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="start"
    android:checked="false"
    android:switchMinWidth="56dp"
    android:textOff="OCUPADO"
    android:textOn="LIVRE"
    android:thumb="@drawable/switch_bg"
    android:track="@drawable/track_bg" />

结果屏幕(设置为ON): enter image description here

更改为:

<TableRow
android:id="@+id/tableRow6"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >

<Switch
    android:id="@+id/switchStatus"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_gravity="start"
    android:checked="false"
    android:switchMinWidth="56dp"
    android:textOff="OCUPADO"
    android:textOn="LIVRE"
    android:thumb="@drawable/switch_bg"
    android:track="@drawable/track_bg" />

结果屏幕: enter image description here

1 个答案:

答案 0 :(得分:0)

制作开关match_parent的宽度 试试这个

<Switch
        android:id="@+id/switchStatus"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="start"
        android:checked="false"
        android:switchMinWidth="56dp"
        android:textOff="OCUPADO"
        android:textOn="LIVRE"
        android:thumb="@drawable/switch_bg"
        android:track="@drawable/track_bg" />