首页 >

popwindow设置了动画 – CSS – 前端,css 添加水印

css 折线,css如何声明,css代码弹出效果,css 斜三角,css+id+class区别,千峰教育css3,css 添加水印popwindow设置了动画 - CSS - 前端,css 添加水印

封装:

/**

* 封装了显示Popupwindow的方法.* @author ansen* @create time 2015-10-27*/public class Util implements AnimationEndCallback{ private PopupWindow reportVideoPopwindow; public void showTips(Activity activity){ int translateHeight=(int) dip2px(activity,52); View parent = ((ViewGroup) activity.findViewById(android.R.id.content)).getChildAt(0); View popView = LayoutInflater.from(activity).inflate(R.layout.activity_popupwindow_tips, null); int statusBar=getStatusBarHeight(activity); reportVideoPopwindow = new PopupWindow(popView,LayoutParams.MATCH_PARENT,translateHeight*2); reportVideoPopwindow.showAtLocation(parent,Gravity.TOP, 0, 0); TipRelativeLayout tvTips=(TipRelativeLayout) popView.findViewById(R.id.rl_tips); tvTips.setTitleHeight(statusBar);//移动状态栏的高度 tvTips.setAnimationEnd(this);//设置动画结束监听函数 tvTips.showTips();//显示提示RelativeLayout,移动动画. } public int getStatusBarHeight(Context context) { int result = 0; int resourceId = context.getResources().getIdentifier(“status_bar_height”, “dimen”, “android”); if (resourceId > 0) { result = context.getResources().getDimensionPixelSize(resourceId); } return result; } private float dip2px(Context context, float dpValue) { final float scale = context.getResources().getDisplayMetrics().density; float result = dpValue * scale + 0.5f; return result; } @Override public void onAnimationEnd() { reportVideoPopwindow.dismiss();//动画结束,隐藏popupwindow }}自定义RelativeLayout 显示提示信息,显示时有动画效果(从上面弹出,然后改变透明度慢慢隐藏public class TipRelativeLayout extends RelativeLayout{ private static final int START_TIME=400;//动画显示时间 private static final int END_TIME=400;//动画移出时间 private static final int SHOW_TIME=1000;//动画显示时间 private AnimationEndCallback animationEnd; private int titleHeight=100;//标题栏默认的高度设置成100 public TipRelativeLayout(Context context) { super(context); } public TipRelativeLayout(Context context, AttributeSet paramAttributeSet) { super(context, paramAttributeSet); } public TipRelativeLayout(Context context, AttributeSet paramAttributeSet,int paramInt) { super(context, paramAttributeSet, paramInt); } public void showTips(){ setVisibility(View.VISIBLE); //向下移动动画 TranslateAnimation downTranslateAnimation=new TranslateAnimation(0,0,0,titleHeight); downTranslateAnimation.setDuration(START_TIME); downTranslateAnimation.setFillAfter(true); startAnimation(downTranslateAnimation); //动画监听 downTranslateAnimation.setAnimationListener(new AnimationListener() { @Override public void onAnimationStart(Animation animation) {} @Override public void onAnimationEnd(Animation animation){//向下移动动画结束 topTranslateAnimation(); } @Override public void onAnimationRepeat(Animation animation) {} }); } private void topTranslateAnimation(){ new Handler().postDelayed(new Runnable() {//延时1秒之后再向上移动 @Override public void run(){ //向上移动动画 TranslateAnimation topTranslateAnimation=new TranslateAnimation(0,0,titleHeight,0); topTranslateAnimation.setDuration(END_TIME); topTranslateAnimation.setFillAfter(true); //改变透明度 AlphaAnimation alphaAnimation=new AlphaAnimation(1,0); alphaAnimation.setDuration(END_TIME); //两个动画添加到动画集合中 AnimationSet animationSet=new AnimationSet(true); animationSet.addAnimation(topTranslateAnimation); animationSet.addAnimation(alphaAnimation); startAnimation(animationSet);//开启动画 animationSet.setAnimationListener(new AnimationListener() { @Override public void onAnimationStart(Animation animation) {} @Override public void onAnimationRepeat(Animation animation) {} @Override public void onAnimationEnd(Animation animation){//动画结束隐藏提示的TextView setVisibility(View.GONE); if(animationEnd!=null){ animationEnd.onAnimationEnd(); } } }); } },SHOW_TIME); } /** * 设置标题栏高度 * @param titleHeight */ public void setTitleHeight(int titleHeight) { this.titleHeight = titleHeight; } public void setAnimationEnd(AnimationEndCallback animationEnd) { this.animationEnd = animationEnd; } /** * 动画结束监听函数 * @author apple */ public interface AnimationEndCallback{ public void onAnimationEnd(); }可以借鉴参考下。

css 折线,css如何声明,css代码弹出效果,css 斜三角,css+id+class区别,千峰教育css3,css 添加水印popwindow设置了动画 - CSS - 前端,css 添加水印


popwindow设置了动画 - CSS - 前端,css 添加水印
  • 怎么把字用圆圈圈起来放大 - CSS - 前端,css 禁止组件换行
  • 怎么把字用圆圈圈起来放大 - CSS - 前端,css 禁止组件换行 | 怎么把字用圆圈圈起来放大 - CSS - 前端,css 禁止组件换行 ...

    popwindow设置了动画 - CSS - 前端,css 添加水印
  • ControlPanel什么意思 - CSS - 前端,css3 3d球形自动旋转
  • ControlPanel什么意思 - CSS - 前端,css3 3d球形自动旋转 | ControlPanel什么意思 - CSS - 前端,css3 3d球形自动旋转 ...

    popwindow设置了动画 - CSS - 前端,css 添加水印
  • 垂直居中布局方法 - CSS - 前端,css 三角边框颜色
  • 垂直居中布局方法 - CSS - 前端,css 三角边框颜色 | 垂直居中布局方法 - CSS - 前端,css 三角边框颜色 ...