Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/zhangke3016/ChangeMode

Implementation of night mode for Android./Android动态切换夜间模式的实现库。
https://github.com/zhangke3016/ChangeMode

Last synced: 1 day ago
JSON representation

Implementation of night mode for Android./Android动态切换夜间模式的实现库。

Lists

README

        

#ChangeMode夜间模式开源库
>Implementation of night mode for Android.

>用最简单的方式实现夜间模式,支持**ListView、RecyclerView**。

#Preview
---
![ChangeMode](gif/screen.gif)
---
#Usage xml
```
android:background="?attr/zzbackground"
app:backgroundAttr="zzbackground"//如果当前页面要立即刷新,这里传入属性名称 比如R.attr.zzbackground 传zzbackground即可

android:textColor="?attr/zztextColor"
app:textColorAttr="zztextColor"//如需立即刷新页面效果 同上
```
#java

```
@Override
protected void onCreate(Bundle savedInstanceState) {
//1. 在要立即切换效果的页面调用此方法 初始化方法要在super.onCreate方法之前调用 无需在Fragment中重复调用初始化方法
ChangeModeController.getInstance().init(this,R.attr.class).setTheme(this, R.style.DayTheme, R.style.NightTheme);
//在其他页面调用此方法
//ChangeModeController.setTheme(this, R.style.DayTheme, R.style.NightTheme);
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

//添加额外view至夜间管理
// ChangeModeController.getInstance().addBackgroundColor(toolbar, R.attr.colorPrimary);
//ChangeModeController.getInstance().addBackgroundDrawable(view,R.attr.colorAccent);
// ChangeModeController.getInstance().addTextColor(view,R.attr.colorAccent);

//2. 设置切换
//ChangeModeController.changeDay(this, R.style.DayTheme);
//ChangeModeController.changeNight(this, R.style.NightTheme);
}

@Override
protected void onDestroy() {
super.onDestroy();
//3. 在onDestroy调用
ChangeModeController.onDestory();
}
```
**关于Fragment**
```
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
//use
//LayoutInflater.from(getActivity()).inflate(R.layout.fragment_test, container, false)

//don't use
// inflater.inflate(R.layout.fragment_test, container, false);
return LayoutInflater.from(getActivity()).inflate(R.layout.fragment_test, container, false);
}

```

#详细操作描述
---
##第一步:自定义属性
```




```
## 第二步:配置夜间style文件
```



<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="windowActionBar">false</item>
<item name="android:windowNoTitle">true</item>
<item name="windowNoTitle">true</item>



<item name="zzbackground">@color/dayBackground</item>
<item name="zzbackgroundDrawable">@drawable/ic_launcher</item>
<item name="zztextColor">@color/dayTextColor</item>
<item name="zzItemBackground">@color/dayItemBackground</item>



<item name="zzbackground">@color/nightBackground</item>
<item name="zzbackgroundDrawable">@color/nightBackground</item>
<item name="zztextColor">@color/nightTextColor</item>
<item name="zzItemBackground">@color/nightItemBackground</item>

<item name="colorPrimary">@color/colorPrimaryNight</item>
<item name="colorPrimaryDark">@color/colorPrimaryDarkNight</item>
<item name="colorAccent">@color/colorAccentNight</item>


```
为相关属性设置对应模式的属性值:
```

#F2F4F7
#000
#fff

#37474F
#263238
#fff

```
##第三步:在布局文件中配置使用对应属性
```



```
注意**textColorAttr**、**backgroundAttr**、**backgroundDrawableAttr**三个属性。如需当前页面立即刷新,需填加相应属性。

属性|描述
----| ------
textColorAttr|修改**字体颜色**时设置。如R.attr.zztextColor 传zztextColor 即可。例:app:textColorAttr="zztextColor"
backgroundAttr|修改**背景颜色/背景图片**时设置。同上。例: app:backgroundAttr="zzbackground"
backgroundDrawableAttr|修改**背景颜色/背景图片**时设置。同上。例: app:backgroundDrawableAttr="zzbackground"

##第四步:页面调用java代码
```
@Override
protected void onCreate(Bundle savedInstanceState) {
//1. 在要立即切换效果的页面调用此方法
ChangeModeController.getInstance().init(this,R.attr.class).setTheme(this, R.style.DayTheme, R.style.NightTheme);
//在其他页面调用此方法
//ChangeModeController.setTheme(this, R.style.DayTheme, R.style.NightTheme);
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

//2.设置切换夜间活日间模式
//ChangeModeController.changeDay(this, R.style.DayTheme);//切换日间模式
//ChangeModeController.changeNight(this, R.style.NightTheme);//切换夜间模式
}
@Override
protected void onDestroy() {
super.onDestroy();
//3. 在onDestroy调用
ChangeModeController.onDestory();
}
```
代码调用**三步**,即可开始夜间之旅。
如果页面有新创建的视图要加入夜间模式控制,代码调用:
```
//添加额外view至夜间管理
// ChangeModeController.getInstance().addBackgroundColor(toolbar, R.attr.colorPrimary);
//ChangeModeController.getInstance().addBackgroundDrawable(view,R.attr.colorAccent);
// ChangeModeController.getInstance().addTextColor(view,R.attr.colorAccent);
```
如果在改变夜间模式时有其他非标准定义的属性时,可在**ChangeModeController.changeDay**或**ChangeModeController.changeNight**之后调用如下代码给相关属性赋值:
```
TypedValue attrTypedValue = ChangeModeController.getAttrTypedValue(this, R.attr.zztextColor);
toolbar.setTitleTextColor(getResources().getColor(attrTypedValue.resourceId));
```

###About me
---
An Android Developer in ZhengZhou.

【[**我的简书地址**](http://www.jianshu.com/users/3c751e06dc32/latest_articles)】

【[**我的CSDN地址**](http://blog.csdn.net/zhangke3016)】

---
###License
=======
Copyright 2016 zhangke

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.