夜间白天模式切换

在Values下创建attrs.xml{

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <attr name="bookimage" format="reference|color" />
    <attr name="tvcolor" format="reference|color" />
</resources>

}

我在styles.xml里定义了DayTheme与NightTheme

<!-- 默认风格 -->
<style name="BrowserThemeDefault" parent="@android:style/Theme.Black.NoTitleBar">
    <item name="bookimage">@android:color/white</item>
    <item name="tvcolor">@android:color/black</item>
</style>

<!-- 夜间模式 -->
<style name="BrowserThemeNight" parent="@android:style/Theme.Black.NoTitleBar">
    <item name="bookimage">@android:color/darker_gray</item>
    <item name="tvcolor">@android:color/white</item>
</style>
XML布局:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
      android:background="?bookimage"----------------必须有  否则什么都出不来
>

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_centerVertical="true"
        android:onClick="btonclick"
        android:text="日/夜间模式切换" />
</RelativeLayout>

java代码:
    
public class MainActivity extends Activity {
    private static boolean blFlag = false;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        SharedPreferences preferences = getSharedPreferences("default_night",
                MODE_PRIVATE);
           blFlag = preferences.getBoolean("default_night",true);
        if (blFlag) {
             this.setTheme(R.style.BrowserThemeDefault);
        }      
        else {
            this.setTheme(R.style.BrowserThemeNight);
        } 
        //上面的代码必须要放在setContentView之上
        
        setContentView(R.layout.activity_main);
    }
    
    public void btonclick(View view) {
        SharedPreferences preferences = getSharedPreferences("default_night",MODE_PRIVATE);
        Editor editor = preferences.edit();
        if (blFlag) {
            this.setTheme(R.style.BrowserThemeNight);
            blFlag =false;
            editor.putBoolean("default_night",false);
        } else {
            this.setTheme(R.style.BrowserThemeDefault);
            blFlag = true;
            editor.putBoolean("default_night",true);
            
        }                   
      // 提交修改
         editor.commit();  
    
        this.setContentView(R.layout.activity_main);
    }

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值