SwitchCompat の色変更
AndroidManifestテーマから自分で作ったstyles.xmlを指定して、「colorControlActivated」を好きな色にする。
AndroidManifest.xml
?xml version="1.0" encoding="utf-8"?
manifest xmlns:android="http://schemas.android.com/apk/res/android"
application
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme"...
styles.xml
resources
style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar"
- @color/colorBlue500
/style
resources
android - How to change the color of a SwitchCompat - Stack Overflow
AndroidManifest.xml
?xml version="1.0" encoding="utf-8"?
manifest xmlns:android="http://schemas.android.com/apk/res/android"
application
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme"...
styles.xml
resources
style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar"
resources
android - How to change the color of a SwitchCompat - Stack Overflow