我需要使用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):
更改为:
<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" />
结果屏幕:
答案 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" />