В своей деятельности я начинаю фрагмент с..
Код: Выделить всё
Objects.requireNonNull(getSupportActionBar()).hide();
getSupportFragmentManager()
.beginTransaction()
.replace(R.id.main, new SettingsFragment(), SETTINGS_FRAGMENT_TAG)
.commit();
Макет определен в root_preferences.xml , но, похоже, там нет способа стилизовать
или что-то еще. Я предполагаю, что он унаследует тему MainActivity.
В моем манифесте эта тема...
Код: Выделить всё
android:theme="@style/Base.Theme.MyApp"
Код: Выделить всё
@color/my_red
@color/dark_background
@color/dark_background
@color/my_red
@color/dark_background
@color/dark_background
В root_preferences.xml я попробовал установить фон в корневом теге..
Код: Выделить всё
xmlns:android="http://schemas.android.com/apk/res/android"
android:background="@color/dark_background">
Подробнее здесь: https://stackoverflow.com/questions/786 ... inactivity
Мобильная версия