扫二维码与项目经理沟通
我们在微信上24小时期待你的声音
解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流
怎么在Android中实现切换主题?相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。
创新互联建站长期为1000+客户提供的网站建设服务,团队从业经验10年,关注不同地域、不同群体,并针对不同对象提供差异化的产品和服务;打造开放共赢平台,与合作伙伴共同营造健康的互联网生态环境。为长顺企业提供专业的成都网站建设、网站制作,长顺网站改版等技术服务。拥有十载丰富建站经验和众多成功案例,为您定制开发。
创建ColorTheme类用于主题更换:
public class ColorTheme { AppCompatActivity ap; public ColorTheme(AppCompatActivity _ap){ap=_ap;} public void updateTheme(int _data){ String data=Integer.toString(_data); FileOutputStream out=null; BufferedWriter writer=null; try{ out=ap.openFileOutput("data",Context.MODE_PRIVATE); writer=new BufferedWriter(new OutputStreamWriter(out)); writer.write(data); }catch (IOException e){ e.printStackTrace(); }finally { try { if(writer!=null){ writer.close(); } }catch (IOException e){ e.printStackTrace(); } } } public void loadTheme(){ FileInputStream in=null; BufferedReader reader= null; StringBuilder content=new StringBuilder(); try{ in=ap.openFileInput("data"); reader=new BufferedReader(new InputStreamReader(in)); String line=""; while((line=reader.readLine())!=null){ content.append(line); } ap.setTheme(Integer.parseInt(content.toString())); }catch (IOException e){ e.printStackTrace(); }finally { if(reader!=null){ try{ reader.close(); }catch (IOException e){ e.printStackTrace(); } } } } }
在oncreate中调用:
protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); final ColorTheme newTheme = new ColorTheme(this); newTheme.loadTheme(); setContentView(R.layout.activity_main);
重点:
要现在res/value/style中设计主题的样式:
这里是我设的的四种样式:
- - - -
别忘了在color里定义的颜色:
#ffffffff #bfffffff #de4037 #de4037 #de4037 #de4037 #1e50a2 #fa7299 #008577
看完上述内容,你们掌握怎么在Android中实现切换主题的方法了吗?如果还想学到更多技能或想了解更多相关内容,欢迎关注创新互联行业资讯频道,感谢各位的阅读!
我们在微信上24小时期待你的声音
解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流