抽象出一个方便自定义的Basepopup类,更加方便的创建出一个popup以及动画效果
如果您是从低于v1.3.0版本升级过来的,请查看改动日志,从v1.3.0版本开始,对于一些误导性的问题和方法名字进行了改动,这将会导致该版本前的方法需要重新复写
v1.7.1:
- 修复当
animaViwe
或dismissView
为adapterView
时会出错的问题
v1.7.0:
- 因为受到抛出异常的吐槽,所以这次就集中修复了animaView和popupView相同的情况,内部已经做了处理。
- ps:强烈建议
initPopupView
使用createPopupById
方法,因为这样我才可以处理的时候把animaView的marginLayoutParams考虑进去
- ps:强烈建议
- 再次修复N的showAsDropDown问题,这次在虚拟机已经测试过了,N和N+都没有问题,详见demo:
SlideFromTopPopupFrag
v1.6.3:
- 强制animaView不能与popupView相同,前者必须是后者的子view
v1.6.2:
- 再次修复N的showAsDropDown问题。。。。
v1.6.1:
- 适配androidN popupwindow的showAsDropDown问题。googleCode
- thanks for CJJ
Step 1.
添加Jitpack到您的root gradle,如果无法导包,一般情况下都是这个原因,请仔细检查
allprojects {
repositories {
...
maven { url "https://jitpack.io" }
}
}
Step 2.
添加依赖(请把最新版替换成上面的jitpack标签所示版本)
dependencies {
compile 'com.github.razerdp:BasePopup:最新版'
}
Step 1:
像您平时定制activity布局文件一样定制您的popup布局(请注意,展示动画的那个view必须是popupview的子view)
etc.
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#8f000000">
<RelativeLayout
android:id="@+id/popup_anima"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/bg_dialog"
android:layout_centerInParent="true"
android:layout_margin="25dp">
<TextView
android:id="@+id/title"
android:layout_width="match_parent"
android:layout_height="50dp"
android:textColor="#3dd1a5"
android:text="This is title"
android:gravity="left|center_vertical"
android:textSize="18sp"
android:paddingLeft="15dp"
/>
<View
android:id="@+id/line"
android:layout_width="match_parent"
android:layout_height="0.5dp"
android:background="#3dd1a5"
android:layout_below="@id/title"
android:layout_marginLeft="5dp"
android:layout_marginRight="5dp"/>
<TextView
android:id="@+id/content"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/line"
android:paddingTop="20dp"
android:paddingLeft="15dp"
android:paddingRight="15dp"
android:paddingBottom="15dp"
android:textSize="14sp"
android:textColor="#1a1a1a"
android:lineSpacingMultiplier="1.2"
android:text="Warning:nuclear silo detected.\nWarning:nuclear silo detected.\nWarning:nuclear silo detected."
/>
<View
android:id="@+id/line2"
android:layout_width="match_parent"
android:layout_height="0.5dp"
android:layout_below="@id/content"
android:layout_marginLeft="15dp"
android:layout_marginRight="15dp"
android:background="@color/line_bg"
android:layout_marginTop="15dp"/>
<TextView
android:id="@+id/cancel"
android:layout_width="60dp"
android:layout_height="40dp"
android:gravity="center"
android:padding="3dp"
android:textColor="#bfbfbf"
android:textSize="14sp"
android:layout_below="@id/line2"
android:layout_alignParentRight="true"
android:layout_marginRight="15dp"
android:text="CANCEL"/>
<TextView
android:id="@+id/ok"
android:layout_width="60dp"
android:layout_height="40dp"
android:gravity="center"
android:padding="3dp"
android:textColor="#3dd1a5"
android:textSize="14sp"
android:layout_below="@id/line2"
android:layout_toLeftOf="@id/cancel"
android:layout_marginRight="15dp"
android:text="OK"/>
</RelativeLayout>
</RelativeLayout>
Step 2:
新建一个类继承Basepopup
Step 3:
实现必要的几个方法:
initShowAnimation()
:初始化一个进入动画,该动画将会用到initAnimaView()
返回的view
onCreatePopupView()
:初始化您的popupwindow界面,建议直接使用createPopupById()
getClickToDismissView()
:如果有需要的话,可以使用这个方法返回一个点击dismiss popupwindow的view(也许是遮罩层也许是某个view,这个随您喜欢)
例如
public class DialogPopup extends BasePopupWindow implements View.OnClickListener{
private TextView ok;
private TextView cancel;
public DialogPopup(Activity context) {
super(context);
ok= (TextView) findViewById(R.id.ok);
cancel= (TextView) findViewById(R.id.cancel);
setViewClickListener(this,ok,cancel);
}
@Override
protected Animation initShowAnimation() {
AnimationSet set=new AnimationSet(false);
Animation shakeAnima=new RotateAnimation(0,15,Animation.RELATIVE_TO_SELF,0.5f,Animation.RELATIVE_TO_SELF,0.5f);
shakeAnima.setInterpolator(new CycleInterpolator(5));
shakeAnima.setDuration(400);
set.addAnimation(getDefaultAlphaAnimation());
set.addAnimation(shakeAnima);
return set;
}
@Override
protected View getClickToDismissView() {
return getPopupWindowView();
}
@Override
public View onCreatePopupView() {
return createPopupById(R.layout.popup_dialog);
}
@Override
public View initAnimaView() {
return findViewById(R.id.popup_anima);
}
@Override
public void onClick(View v) {
switch (v.getId()){
case R.id.ok:
Toast.makeText(getContext(),"click the ok button",Toast.LENGTH_SHORT).show();
break;
case R.id.cancel:
Toast.makeText(getContext(),"click the cancel button",Toast.LENGTH_SHORT).show();
break;
default:
break;
}
}
}
Step 4:
把您刚才实现的popup给new出来并调用show方法
例如
DialogPopup popup = new DialogPopup(context);
popup.showPopupWindow();
例子更新日志:
https://github.com/razerdp/BasePopup/blob/master/UpdateLog.md
本项目拥有的方法如下(后续的更新没有在这里写了,详情看demo或者更新日志,demo一般情况下都会包括各种情况):
- 必须实现的抽象方法:
- onCreatePopupView():得到popupwindow的主体,一般是在xml文件写好然后inflate出来并返回,推荐使用createPopupById()方法以减少代码
- initAnimaView():得到用于展示动画的view,一般为了做到蒙层效果,我们的xml都会给一个灰色半透明的底层然后才是给定展示的popup(详情见demo)
- initShowAnimation():展示popup的动画
- getClickToDismissView():点击触发dismiss的view
- 非必须实现的公有方法:
- initShowAnimator():同getShowAnimation,不过有些时候用animator更加的丰富
- getInputView():得到给定需要输入的view,一般用于包含edittext的popup
- initExitAnimation():popup执行dismiss时的退出动画
- initExitAnimator():同上
- setAutoShowInputMethod():是否自动弹出输入法
- setAdjustInputMethod():popup是否随着输入法弹出而自适应
- getPopupViewById():工具方法,不用写那么多LayoutInflate.from(context)
- setViewClickListener():工具方法,用于方便您设置onClickListener(多个View共用一个listener哦)
- setNeedPopupFade():设置popup是否淡入淡出,默认为淡入淡出(这个参数将会对整个popup动画哦)
- setPopupAnimaStyle():设定您喜欢的popup动画style(就跟您平时使用popup一样弄得动画style)
- 以及各种getter/setter
- show方法:
- showPopupWindow():默认将popup显示到当前窗口
- showPopupWindow(int res):将popup显示到对应的id控件上
- showPopupWindow(View v):将popup显示到view上
- 一些别的方法:
- setPopupWindowFullScreen(boolean):popup是否可以覆盖状态栏(全屏)
http://www.jianshu.com/p/069f57e14a9c
MIT