Android SwitchCompat 在关闭状态下不渲染轨道

Android SwitchCompat not rendering track when in off state

我的问题可能最好通过视觉方式提出——我想要一个 SwitchCompat 开关来查看他们在 Android 设置应用程序中的方式:

这是关闭的:

这是在:

但出于某种原因,我的 SwitchCompat 开关在关闭时看起来像这样:

没有灰色 "track" 延伸到右侧。但是,打开时,它看起来符合预期:

如您所见,我已经为我的应用程序应用了自定义色调。我的自定义色调应用如下:

<activity
    android:name=".editor.MySettingsEditor"
    android:theme="@style/Theme.MyCustomTheme" />

然后,在 styles.xml:

<style name="Theme.MyCustomTheme" parent="Theme.AppCompat">    
    <item name="colorAccent">@color/myColorAccent</item>
    <item name="colorPrimary">@color/myColorPrimary</item>
    <item name="colorPrimaryDark">@color/myColorPrimaryDark</item>
    <item name="alertDialogTheme">@style/AppCompatAlertDialogStyle</item>
</style>

为确保不是我的自定义样式导致此问题,我通过这样做将其删除:

<activity
    android:name=".editor.MySettingsEditor"
    android:theme="@style/Theme.AppCompat" />

但是,"off" 轨道仍然没有显示,尽管色调颜色现在变为 Android 默认蓝绿色。

为什么我的 SwitchCompat 开关在关闭状态下缺少灰色轨道?

描述SwitchCompat的XML超级简单:

    <android.support.v7.widget.SwitchCompat
        android:id="@+id/checkbox"
        android:layout_width="wrap_content"
        android:layout_height="fill_parent"
        android:layout_weight="1"/>

谢谢!

您可以通过为活动颜色设置 colorControlActivated 和为非活动颜色设置 colorSwitchThumbNormal 来应用自定义色调。如果你想改变轨道颜色,那么你可以设置 android:colorForeground

<style name="CustomSwitch" parent="Theme.AppCompat">  
    <!-- active thumb-->
    <item name="colorControlActivated">@color/active_switch_color</item>

    <!-- inactive thumb-->
    <item name="colorSwitchThumbNormal">@color/inactive_switch_color</item>

    <!-- inactive track color -->
    <item name="android:colorForeground">@color/inactive_track_color</item>
</style>  

如果您想直接为您的视图设置自定义主题:

<android.support.v7.widget.SwitchCompat
        android:id="@+id/checkbox"
        android:layout_width="wrap_content"
        android:layout_height="fill_parent"
        android:layout_weight="1"
        android:theme="@style/CustomSwitch"/>

@esilver 如果你想动态处理它们,也许是更好的方法

试试这个...我已经测试过,它工作得很好

public class MainActivity extends AppCompatActivity {
    int[][] states = new int[][] {
            new int[] {-android.R.attr.state_checked},
            new int[] {android.R.attr.state_checked},
    };

    int[] thumbColors = new int[] {
            Color.BLACK,
            Color.RED,
    };

    int[] trackColors = new int[] {
            Color.GREEN,
            Color.BLUE,
    };

    @Override
    protected void onCreate(@Nullable Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        SwitchCompat switchCompat = (SwitchCompat) findViewById(R.id.switch);
        DrawableCompat.setTintList(DrawableCompat.wrap(switchCompat.getThumbDrawable()), new ColorStateList(states, thumbColors));
        DrawableCompat.setTintList(DrawableCompat.wrap(switchCompat.getTrackDrawable()), new ColorStateList(states, trackColors));
    }
}

您只需根据 requirement/needs 更新 "trackColors" 和 "thumbColor"。