【问题标题】:Custom SwitchPreferenceCompat in androidxandroidx 中的自定义 SwitchPreferenceCompat
【发布时间】:2021-04-29 02:06:41
【问题描述】:

我正在尝试将首选项屏幕中的默认开关拇指更改为我的自定义。我尝试了在这里找到的不同解决方案,但没有一个有效。我最后一次尝试是创建一个自定义布局,但问题是我无法正确地将开关添加到该布局。无法真正添加 androidx.appcompat.widget.SwitchCompat 因为 id(@android:id/switch_widget 需要 API 级别 24(当前最小值为 21)或其他建议的 id:无法解析符号 '@android:id/switchWidget' )。 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

【问题讨论】:

    标签: androidx preferences preferenceactivity switchpreference


    【解决方案1】:

    所以几个小时后,我就知道如何做到这一点了。发布此答案,以便它可以帮助某人节省时间。 在 root_preferences.xml 中有 android:widgetLayout 属性,您可以在其中为 SwitchPreferenceCompat 设置自定义布局:

        <SwitchPreferenceCompat
            android:widgetLayout="@layout/switch_preference_compat"
            app:key="show_contacts"
            app:title="@string/contact_information"
            app:singleLineTitle="false"
            app:defaultValue="true"
            app:iconSpaceReserved="false"/>
    

    switch_preference_compat.xml:

    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        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: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="@+id/switchWidget"
            android:thumb="@drawable/thumb"
            app:track="@drawable/track"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />
    
    </LinearLayout> 
    

    您可以在其中放置用于自定义拇指和轨道的可绘制对象。我的看起来是这样的: thumb.xml:

    <?xml version="1.0" encoding="utf-8"?>
    <selector xmlns:android="http://schemas.android.com/apk/res/android">
    
        <item android:state_checked="false"
            android:drawable="@drawable/switch_icon_false" />
    
        <item android:state_checked="true"
            android:drawable="@drawable/switch_icon_true"/>
    
    </selector>
    

    track.xml:

    <?xml version="1.0" encoding="utf-8"?>
    <selector xmlns:android="http://schemas.android.com/apk/res/android">
    
        <item android:state_checked="false">
            <shape android:shape="rectangle">
                <solid android:color="#dedede"/>
                <corners android:radius="100sp"/>
                <stroke android:color="#dedede"
                    android:width="1dp"/>
            </shape>
        </item>
    
        <item android:state_checked="true">
            <shape android:shape="rectangle">
                <solid android:color="#9dcbb5"/>
                <corners android:radius="100sp"/>
            </shape>
        </item>
    
    </selector>
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2020-07-27
      • 2019-05-19
      • 1970-01-01
      • 1970-01-01
      • 2019-06-03
      • 1970-01-01
      相关资源
      最近更新 更多