如何实现android跟随系统夜间/黑暗模式?

时间:2020-06-28 09:06:14

标签: java android android-theme android-dark-theme android-night-mode

我已经在我的应用程序及其工作中设置了 Light Dark 模式。

但是我也想添加一个选项,以使应用程序遵循系统设置的模式。因此,用户可以在三个选项中进行选择。

我尝试执行此操作,但未成功。我想添加单选按钮以切换为亮,暗,遵循系统模式。

Here's what I have tried


public class setting extends AppCompatActivity {

    private Switch darkMode;
    Button autoButton;

    @Override
    protected void onCreate(Bundle savedInstanceState) {

        if (AppCompatDelegate.getDefaultNightMode() == AppCompatDelegate.MODE_NIGHT_YES) {
            setTheme(R.style.darktheme);
        }
        else {
            setTheme(R.style.AppTheme);
        }

        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_setting);

        Toolbar toolbar = findViewById(R.id.toolbar);
        setSupportActionBar(toolbar);
        getSupportActionBar().setTitle("Settings");
        getSupportActionBar().setDisplayHomeAsUpEnabled(true);
        toolbar.setTitleTextAppearance(this, R.style.Font);

        darkMode = (Switch) findViewById(R.id.darkModeSwitch);
        autoButton = (Button) findViewById(R.id.autoButton);

        if (AppCompatDelegate.getDefaultNightMode() == AppCompatDelegate.MODE_NIGHT_YES) {
            darkMode.setChecked(true);
        }

        darkMode.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
            @Override
            public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {

                if (isChecked) {
                    AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_YES);
                    getDelegate().applyDayNight();
                    recreate();
                    //restartApp();
                }
                else {
                    AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_NO);
                    recreate();
                    // restartApp();
                }
            }
        });

    }
}

1 个答案:

答案 0 :(得分:0)

有一个选项可以执行此操作:AppCompatDelegate.MODE_NIGHT_FOLLOW_SYSTEM

AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_FOLLOW_SYSTEM);