轻量级前端框架助力开发者提升项目效率与性能
586
2022-12-01
android中透明Dialog及ProgressDialog的实现
首先是一个普通的版本:
public static final int SHOWDIALOG = 10000; @Override protected Dialog onCreateDialog(int id) { switch (id) { case SHOWDIALOG: Dialog dialog = new Dialog(this,R.style.LodingDialog); dialog.setContentView(R.layout.dialog); return dialog; default: return null; } }
dialog.xml
style.xml
下面是美化版本:
需要用到的图片:
也可以到这里-
layout_progressbar.xml
位于drawable目录下:
ic_circle_progress.xml
style.xml
代码:
private final static int PROGRESSFORWAIT = 1000; @Override protected Dialog onCreateDialog(int id, Bundle args) { // TODO Auto-generated method stub super.onCreateDialog(id, args); switch (id) { case PROGRESSFORWAIT: Dialog dialog = new Dialog(this,R.style.new_circle_progress); dialog.setContentView(R.layout.layout_progressbar); return dialog; default: return null; } }
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~