时间:2021-05-20
本文实例讲述了Android开发实现切换主题及换肤功能。分享给大家供大家参考,具体如下:
废话不说先看效果:
创建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中设计主题的样式:
这里是我设的的四种样式:
<?xml version="1.0"?> <resources> <!-- Base application theme. --> -<style parent="Theme.AppCompat.Light.NoActionBar" name="AppTheme"> <!-- Customize your theme here. --> <item name="colorPrimary">@color/colorPrimary</item> <item name="colorPrimaryDark">@color/colorPrimaryDark</item> <item name="colorAccent">@color/colorAccent</item> <item name="colorButtonNormal">@color/colorAccent</item></style> -<style parent="Theme.AppCompat.Light.NoActionBar" name="Blue"> <!-- Customize your theme here. --> <item name="colorPrimary">@color/blue</item> <item name="colorPrimaryDark">@color/blue</item> <item name="colorAccent">@color/blue</item> <item name="colorButtonNormal">@color/blue</item></style> -<style parent="Theme.AppCompat.Light.NoActionBar" name="Pink"> <!-- Customize your theme here. --> <item name="colorPrimary">@color/pink</item> <item name="colorPrimaryDark">@color/pink</item> <item name="colorAccent">@color/pink</item> <item name="colorButtonNormal">@color/pink</item></style> -<style parent="Theme.AppCompat.Light.NoActionBar" name="Turquoise"> <!-- Customize your theme here. --> <item name="colorPrimary">@color/turquoise</item> <item name="colorPrimaryDark">@color/turquoise</item> <item name="colorAccent">@color/turquoise</item> <item name="colorButtonNormal">@color/turquoise</item></style></resources>别忘了在color里定义的颜色:
<?xml version="1.0" encoding="UTF-8"?> <resources> <color name="colorText">#ffffffff</color> <color name="hintText">#bfffffff</color> <color name="colorPrimary">#de4037</color> <color name="colorPrimaryDark">#de4037</color> <color name="colorAccent">#de4037</color> <!--注册界面提示红色--> <color name="hintRed">#de4037</color> <color name="blue">#1e50a2</color> <color name="pink">#fa7299</color> <color name="turquoise">#008577</color></resources>更多关于Android相关内容感兴趣的读者可查看本站专题:《Android控件用法总结》、《Android开发入门与进阶教程》、《Android视图View技巧总结》、《Android编程之activity操作技巧总结》、《Android数据库操作技巧总结》及《Android资源操作技巧汇总》
希望本文所述对大家Android程序设计有所帮助。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
Android换肤技术总结背景纵观现在各种Androidapp,其换肤需求可以归为-白天/黑夜主题切换(或者别的名字,通常2套),如同花顺/自选股/天天动听等,
最近公司做的项目得到一个网站换肤的需求,也就是切换主题。那么如何切换主题色呢?切换主题色其实就是切换CSS,然而在项目中不仅只有CSS需要换肤,图标和图片也需要
夜间模式实现所谓的夜间模式,就是能够根据不同的设定,呈现不同风格的界面给用户,而且晚上看着不伤眼睛,实现方式也就是所谓的换肤(主题切换)。对于夜间模式的实现网上
本文实例讲述了Android开发实现的图片点击切换功能。分享给大家供大家参考,具体如下:java代码publicclassMainActivityextends
skin-loader框架的换肤是通过插件化的形式替换资源文件,实现换肤效果。好处是可以在线更新皮肤换肤android-skin-loader源码Demo样例流