迁移到Androidx SwitchCompat后为白色

时间:2019-11-28 10:17:27

标签: android androidx switchcompat

我已经将项目迁移到AndroidX。我的MainActivity扩展了FragmentActivity,而我的第一个SwitchCompat看起来全是白色,当我第一次来到该屏幕时,它根本没有任何颜色。 SwitchCompat is white。其下的所有其他SwitchCompact均具有正确的颜色。如果我按回去并再次进入该屏幕,则我的第一个SwitchCompact会收到正确的颜色并且看起来不错。

如果我将MainActivty扩展为AppCompactActivity,则当我第一次到达该屏幕时一切正常。有谁知道这里出问题了,因为在迁移之前,我的MainActivity也扩展了FragmentActivity,一切都很好。 我的xml代码在两种情况下都是相同的:

    <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context=".BlankFragment">

    <androidx.appcompat.widget.SwitchCompat
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

    <androidx.appcompat.widget.SwitchCompat
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />
</LinearLayout>

1 个答案:

答案 0 :(得分:0)

我没有深入理解为什么在扩展FragmentActivity时会出现此问题。但可以通过使用自定义轨迹和拇指来在“ SwitchCompat”的动作事件上显示适当的颜色。

您的切换按钮

<androidx.appcompat.widget.SwitchCompat
            android:id="@+id/sw_autoplay"
            android:layout_width="44dp"
            android:layout_height="25dp"
            android:layout_alignParentEnd="true"
            android:layout_alignParentRight="true"
            android:layout_centerVertical="true"
            android:layout_marginEnd="10dp"
            android:layout_marginRight="10dp"
            android:paddingStart="4dp"
            android:paddingEnd="4dp"
            android:textOff=""
            android:textOn=""
            android:theme="@style/SwitchButtonTheme"
            android:thumb="@drawable/thumb"
            app:track="@drawable/track" />

拇指

<?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="oval">
        <solid android:color="#ffffff" />
        <size android:width="20dp" android:height="20dp" />
        <stroke android:width=".5dp" android:color="#A4A0A0" />
    </shape>
</item>
<item android:state_checked="true">
    <shape android:shape="oval">
        <solid android:color="#ffffff" />
        <size android:width="20dp" android:height="20dp" />
        <stroke android:width=".5dp" android:color="#57F47F" />
    </shape>
</item>

曲目

<?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">
        <corners android:radius="20dp" />
        <solid android:color="#ffffff" />
        <stroke android:width=".3dp" android:color="#A4A0A0" />
        <size android:height="20dp" />
    </shape>
</item>
<item android:state_checked="true">
    <shape android:shape="rectangle">
        <corners android:radius="20dp" />
        <solid android:color="#57F47F" />
        <stroke android:width=".3dp" android:color="#A4A0A0" />
        <size android:height="20dp" />
    </shape>
</item>

仅当您希望使用“ FragmentActivity”时使用。