首页 > 代码库 > adnroid仿miui的dialog
adnroid仿miui的dialog
先来看下效果图:
当中show和dismiss的时候有动画效果。
原先试过使用PopupWindow来做,可是使用的时候不是那么舒服,毕竟不是dialog嘛。
所以这次尝试还是使用dialog来做 ,非常多地方是引用了系统源代码(源代码是最好的老师)
首先看CustomDialog.java的构造函数:
protected CustomDialog(Context context) { this(context, R.style.CustomDialog); } protected CustomDialog(Context context, int theme) { super(context, theme); mAlert = new AlertController(context, this, getWindow()); Window window = getWindow(); window.setGravity(Gravity.BOTTOM); // 设置window的位置为底部 window.setWindowAnimations(R.style.AnimationDialog); // 设置window的动画 window.setBackgroundDrawableResource(android.R.color.transparent); // 设置window背景透明 }
艾玛,不太会描写叙述,直接上源代码
0资源分代码下载地址:http://download.csdn.net/detail/luck_apple/7735321
源代码中有点小问题,addView功能没有实现,在AlertController中加入下面代码就可以:
public void apply(AlertController dialog) { if (mTitle != null) { dialog.setTitle(mTitle); } if (mMessage != null) { dialog.setMessage(mMessage); } if (mPositiveButtonText != null) { dialog.setButton(DialogInterface.BUTTON_POSITIVE, mPositiveButtonText, mPositiveButtonListener, null); } if (mNegativeButtonText != null) { dialog.setButton(DialogInterface.BUTTON_NEGATIVE, mNegativeButtonText, mNegativeButtonListener, null); } // addView的实现 if (mView != null) { if (mViewSpacingSpecified) { dialog.setView(mView, mViewSpacingLeft, mViewSpacingTop, mViewSpacingRight, mViewSpacingBottom); } else { dialog.setView(mView); } }
adnroid仿miui的dialog
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。