Android实现动态切换组件背景的方法
程序员文章站
2023-02-02 12:39:02
本文所述的程序实现的功能为在软件中动态的选择组件背景,系统皮肤,自定义吐司背景等。
为实现这一要求,就需要用到安卓中的sharedprefence的功能,首先在设置里面写...
本文所述的程序实现的功能为在软件中动态的选择组件背景,系统皮肤,自定义吐司背景等。
为实现这一要求,就需要用到安卓中的sharedprefence的功能,首先在设置里面写一个控件,设置一个点击监听器,点击的时候显示一个alert选择弹窗,让你进行选择,对这个弹窗再设置一个点击监听器(onitemlistener),点击到具体某个的时候,把对应的点击id保存到sahredprefence里面去,这样,其他地方就可以从这里取得设置里选择的值,进行动态个性化处理。
具体代码如下:
1.设置选择的操作:
scv_setaddressbg.setonclicklistener(new onclicklistener() { @override public void onclick(view v) { int which = sp.getint("which", 0); final string[] items = {"半透明","活力橙","卫士蓝","金属灰","苹果绿"}; alertdialog.builder builder = new builder(settingactivity.this); builder.settitle("设置归属地显示背景"); builder.setsinglechoiceitems(items, which, new dialoginterface.onclicklistener() { @override public void onclick(dialoginterface dialog, int which) { editor edit = sp.edit(); edit.putint("which", which); edit.commit(); scv_setaddressbg.setdesc(items[which]); dialog.dismiss(); } }); builder.setnegativebutton("取消", null); builder.show(); } });
2.显示自定义吐司的操作:
public void showmytoast(string address) { <span style="color:#ff6600;">int[] ids = {r.drawable.call_locate_white,r.drawable.call_locate_orange,r.drawable.call_locate_blue ,r.drawable.call_locate_gray,r.drawable.call_locate_green};</span> <span style="color:#ff6600;">sharedpreferences sp = getsharedpreferences("config", mode_private); int which = sp.getint("which", 1);</span> view = view.inflate(this, r.layout.address_show, null); textview textview = (textview) view.findviewbyid(r.id.tv_address); textview.settext(address); <span style="color:#ff6600;">view.setbackgroundresource(ids[which]);</span> windowmanager.layoutparams params = new windowmanager.layoutparams(); params.height = windowmanager.layoutparams.wrap_content; params.width = windowmanager.layoutparams.wrap_content; params.flags = windowmanager.layoutparams.flag_not_focusable | windowmanager.layoutparams.flag_not_touchable | windowmanager.layoutparams.flag_keep_screen_on; params.format = pixelformat.translucent; params.type = windowmanager.layoutparams.type_toast; wm.addview(view, params); }
3.归纳总结如下:
(1)要注意数组的应用,ids[ value]这种使用方式要能想到用,将图片资源文件写在一个ids数组里是个很好的方式和想法。
(2)细心,获得sp的时候名字写错了,config写成了configs。
(3)理解调试技巧是靠经验和逻辑推理的,都很重要。
下一篇: Android中创建多线程管理器实例