gpt4 book ai didi

Android SwitchCompat风格

转载 作者:行者123 更新时间:2023-11-29 17:21:41 28 4
gpt4 key购买 nike

我在装有 android 5.1.1 的新设备上测试了我的应用程序。在我的 SettingsActivity 中,我有一个开关。我已经阅读了一些帖子并将其更改为 android.support.v7.widget.SwitchCompat 但问题仍然如下:在我的旧设备上,开关看起来非常好。您可以为 textOntextOff 设置两个文本,它非常适合。但是自从 api 21 或其他什么我在这里得到这个小 SCSS :

enter image description here

看起来像****。我如何为 lollypop 开关等所有设备重新设计它的样式?

编辑:上面的问题已经回答了。缺少一件小事:如何更改开关上文本的颜色。(不是左侧的标签!!!)

styles.xml

<style name="SwitchTextAppearance" parent="TextAppearance.AppCompat.Widget.Switch">
<item name="android:textSize">12sp</item>
<item name="android:textColor">#3F51B5</item>
</style>

layout.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="8dp"
android:paddingRight="8dp"
android:paddingBottom="12dp"
android:paddingTop="12dp">

<android.support.v7.widget.SwitchCompat
android:id="@+id/mySwitch"
android:layout_width="match_parent"
android:switchMinWidth="56dp"
android:layout_height="wrap_content"
android:switchTextAppearance="@style/SwitchTextAppearance"
android:thumb="@drawable/thumb"
android:track="@drawable/track"
app:showText="true"
android:textOn="ON"
android:textOff="OFF"
android:text="Toggle Switch"
android:textAppearance="?android:attr/textAppearanceMedium"
android:background="@android:color/transparent"
android:button="@null"
android:layout_alignParentEnd="true"
android:layout_alignParentRight="true"/>

</RelativeLayout>

最佳答案

使用 SwitchCompat.setSwitchTextAppearance,您可以设置出现在开关内部的文本的样式。

添加这样的样式并使用 setSwitchTextAppearance 进行设置:

<style name="SwitchTextAppearance" parent="TextAppearance.AppCompat.Widget.Switch">
<item name="android:textSize">12sp</item>
<item name="android:textColor">#3F51B5</item>
</style>

并且您应该能够自定义“OFF”文本的大小、颜色等。

关于Android SwitchCompat风格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36314877/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com