如何在TableRow中使用Android填充宽度制作切换按钮
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在TableRow中使用Android填充宽度制作切换按钮相关的知识,希望对你有一定的参考价值。
我需要使用一个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" />
结果屏幕:
答案
制作开关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" />
以上是关于如何在TableRow中使用Android填充宽度制作切换按钮的主要内容,如果未能解决你的问题,请参考以下文章
如何在我的 Android 应用程序中使视图填充其父级的整个宽度?