1)在xml里定义主题风格
<style name="NightTheme" parent="android:Theme.Holo">
<!-- API 14 theme customizations can go here. -->
</style>
<style name="LightTheme" parent="android:Theme.Holo.Light.DarkActionBar">
<!-- API 14 theme customizations can go here. -->
</style>
2)在代码中使用getSharedPreferences()方法用来保存主题切换时的状态,在下次
点击‘切换主题’按键时,获取到上次保存的状态并设置
import android.app.Activity;
import android.content.Intent;
import android.content.SharedPreferences;
import android.os.Bundle;
import android.view.View;
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
boolean isDark = readMode();
if(isDark){
//设置主题
setTheme(R.style.NightTheme);
}else{
setTheme(R.style.LightTheme);
}
//关联布局
setContentView(R.layout.activity_main);
}
//设置夜间模式按钮
public void btnNightTheme(View v){
boolean isDark = readMode();
saveMode(!isDark);
finish();
//取消Activity切换动画
overridePendingTransition(0, 0);
Intent intent = new Intent(this,MainActivity.class);
startActivity(intent);
}
//保存主题状态
private void saveMode(boolean isDark) {
SharedPreferences sp = getSharedPreferences("setting", 0);
sp.edit().putBoolean("dark_mode", isDark).commit();
}
//读取主题状体
private boolean readMode() {
SharedPreferences sp = getSharedPreferences("setting", 0);
boolean isDark = sp.getBoolean("dark_mode", false);
return isDark;
}
}
另外有需要云服务器可以了解下创新互联scvps.cn,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。
新闻标题:Android主题切换-创新互联
本文URL:https://www.cdcxhl.com/article44/hhoee.html
成都网站建设公司_创新互联,为您提供定制网站、域名注册、网站排名、面包屑导航、网站维护、静态网站
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联