I've migrated my project to AndroidX
. My MainActivity
extend FragmentActivity
my first SwitchCompat
looks all white, it doesn't have any color at all when I first time come to that screen. SwitchCompat is white. All other SwitchCompact under it are with correct color. If I press back and come again to that screen, my first SwitchCompact
receive correct color and looks fine.
If I change that my MainActivty
extend AppCompactActivity
, then everything is ok when I first time reach that screen. Does anyone know where is problem here because before migration my MainActivity
also extend FragmentActivity
and everything was fine.
My xml
code is the same in the both case:
<?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>