少年乘勇气,百战过乌孙。这篇文章主要讲述如何在TableRow中使用Android填充宽度制作切换按钮相关的知识,希望能为你提供帮助。
我需要使用一个Switch,但我需要它来填充TableRow,它会一半到ON,一半到OFF。
【如何在TableRow中使用Android填充宽度制作切换按钮】我怎么能实现这一目标?尝试了很多组合但没有成功。
我有:
<
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" />
推荐阅读
- 在导航菜单中的Android应用程序中创建alertdialog以注销
- 覆盖MFMailComposeViewController的UIAppearance属性
- App Store和Ad Hoc已停用
- Appirater不要求审查
- 将本地db(Sqlite)与服务器db android同步
- Android系统。在按钮创建的操作完成之前,如何将按钮显示为PRESSED()
- Glassfish Android
- RadioButton Intent活动 - android
- android.widget.RadioGroup无法强制转换为android.widget.RadioButton