我正在尝试将首选项屏幕中的默认开关拇指更改为我的自定义。我尝试了在这里找到的不同解决方案,但没有一个有效。我最后一次尝试是创建自定义布局,但问题是我无法正确地将开关添加到该布局。由于 id(@android:id/switch_widget 需要 API 级别 24(当前最小值为 21)或其他建议的 id:无法解析符号 '@android:id/switchWidget'),无法真正添加 androidx.appcompat.widget.SwitchCompat )。root_preferences.xml(部分):
<PreferenceCategory app:title="@string/confidentiality"
android:layout="@layout/preferences_category">
<SwitchPreferenceCompat
android:layout="@layout/switch_preference_compat"
app:key="show_contacts"
app:title="@string/contact_information"
app:singleLineTitle="false"
app:defaultValue="true"
app:iconSpaceReserved="false"/>
</PreferenceCategory>
switch_preference_compat.xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:gravity="center_vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="16dp"
android:layout_marginTop="8dp"
android:orientation="vertical">
<TextView
android:id="@android:id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/ks_font_data"
android:textSize="18sp"/>
<TextView
android:id="@android:id/summary"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="16sp"/>
</LinearLayout>
<androidx.appcompat.widget.SwitchCompat
android:id="@android:id/switchWidget" <--- error here
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
我尝试了样式,但也效果不佳。我希望我的拇指看起来像这样[我的自定义开关][1] [1]:https://i.stack.imgur.com/Js5vb.png