这是我在 xml 中的开关:
<Switch
android:id="@+id/mySwitch"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:textOff="OFF"
android:textOn="ON" />
我找不到<switch>
使开关变大的属性,到目前为止我尝试了什么:
android-textSize
, 控制位于开关旁边的描述大小,而不是开关 ON/OFF 本身
android:switchMinWidth
, 控制每个开关组件的宽度(ON/OFF)
我只是希望我的开关更大,并且文本 ON 和 OFF 也会影响开关变大。
有没有我错过的财产?