日夜间模式切换第二种方式

//工程自带的values文件夹中

//colors.xml文件

    #3F51B5

    #303F9F

    #FF4081

 

    #FF0000

 

//工程自带的values文件夹中

//strings.xml文件

        //自己的项目名

    DayNightTwo

    切换成夜间模式

 

//自己创建一个文件夹  values-night

将以上两个文件粘贴过来

//colors.xml文件中

    #35464e

    #212a2f

    #212a2f

   

    #00FF00

 

//strings.xml中

    DayNightTwo

    切换成日间模式

 

//activity_main中的布局设置

   xmlns:app="http://schemas.android.com/apk/res-auto"

   xmlns:tools="http://schemas.android.com/tools"

   android:layout_width="match_parent"

   android:layout_height="match_parent"

   android:orientation="vertical"

   tools:context="com.example.android_day_night.MainActivity"

   android:gravity="center_horizontal"

    >

 

   

       android:text="@string/change_to_content"

        android:id="@+id/change_theme_btn"

       android:layout_width="wrap_content"

       android:layout_height="wrap_content"

       android:layout_marginTop="30dp"

       android:gravity="center_horizontal"

       android:onClick="onClick" />

 

   

       android:layout_width="wrap_content"

       android:layout_height="wrap_content"

       android:layout_marginTop="100dp"

       android:text="Hello World!"

       android:textColor="@color/main_textView" />

 

   

        android:layout_width="wrap_content"

       android:layout_height="wrap_content"

       android:layout_marginTop="20dp"

       android:text="Hello World!"

       android:textColor="@color/main_textView" />

 

   

       android:layout_width="wrap_content"

       android:layout_height="wrap_content"

       android:layout_marginTop="20dp"

       android:text="Hello World!"

       android:textColor="@color/main_textView" />

       

 

//创建一个自定义的Application在清单文件中配置

public class App extends Application {

    @Override

    public voidonCreate() {

       super.onCreate();

        if(getSharedPreferences("theme",MODE_PRIVATE).getBoolean("night_theme", false)) {

           AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_YES);

        }

    }

}

 

//MainActivity中

//按钮的点击监听事件

public void onClick(View v) {

        //切换日夜间模式

        int uiMode;

        uiMode =getResources().getConfiguration().uiMode &Configuration.UI_MODE_NIGHT_MASK;

        switch(uiMode) {

            case Configuration.UI_MODE_NIGHT_YES:

               AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_NO);

               getSharedPreferences("theme",MODE_PRIVATE).edit().putBoolean("night_theme", false).commit();

                break;

            caseConfiguration.UI_MODE_NIGHT_NO:

               AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_YES);

               getSharedPreferences("theme",MODE_PRIVATE).edit().putBoolean("night_theme", true).commit();

                break;

        }

        recreate();

    }

 

你可能感兴趣的:(日夜间模式切换第二种方式)