无法更改 SwitchCompat 小部件的缩略图的文本大小
can't change the textsize of the thumb of SwitchCompat widget
我很难更改 switch 紧凑型缩略图的文本大小。
这是我的布局:
<android.support.v7.widget.SwitchCompat
android:id="@+id/switch_compat2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="20dp"
android:checked="true"
android:switchTextAppearance="@style/MyStyle"
android:text="SwitchCompat (SDK v7+)"
app:showText="true" />
风格:
<style name="MyStyle">
<item name="android:textColor">#229922</item>
<item name="android:textSize">10sp</item>
</style>
然而,无论我在 "MyStyle" 上做什么,开关总是看起来像这样:
理想情况下,我希望它看起来像这样:
有人愿意分享他们的可绘制对象吗?我可以尝试匹配上面的图片吗?
我正在查看这些主题,但没有正确匹配。这让它看起来更糟。
How to change the size of a Switch Widget
谢谢!
实际上你需要使用
app:switchTextAppearance="@style/MyStyle"
结果:
我很难更改 switch 紧凑型缩略图的文本大小。
这是我的布局:
<android.support.v7.widget.SwitchCompat
android:id="@+id/switch_compat2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="20dp"
android:checked="true"
android:switchTextAppearance="@style/MyStyle"
android:text="SwitchCompat (SDK v7+)"
app:showText="true" />
风格:
<style name="MyStyle">
<item name="android:textColor">#229922</item>
<item name="android:textSize">10sp</item>
</style>
然而,无论我在 "MyStyle" 上做什么,开关总是看起来像这样:
理想情况下,我希望它看起来像这样:
有人愿意分享他们的可绘制对象吗?我可以尝试匹配上面的图片吗?
我正在查看这些主题,但没有正确匹配。这让它看起来更糟。
How to change the size of a Switch Widget
谢谢!
实际上你需要使用
app:switchTextAppearance="@style/MyStyle"
结果: