android—PopupWindow用法

本文详细介绍了如何使用Android的windowPopup特性自定义底部弹出框,包括初始化布局、设置动画效果及显示方式。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

windowPopup用于自定义弹出框,例如从底部弹出。

效果图

1.初始好windowpopup布局

private void initPopup(){

 LinearLayout view=(LinearLayout)LayoutInflater.from(this).inflate(R.layout.popup, null);
 popup=new PopupWindow(view, LinearLayout.LayoutParams.MATCH_PARENT, LinearLayout.LayoutParams.WRAP_CONTENT);//windowpoup设置
 popup.setFocusable(true);
 popup.setAnimationStyle(R.style.popupstyle);//设置popup弹出的动画效果
 Button take=(Button)view.findViewById(R.id.take_picture);
 take.setTag("take");
 // take.setOnClickListener(this);
 Button picker=(Button)view.findViewById(R.id.pick_picture);
 picker.setTag("picker");
 // picker.setOnClickListener(this);
 Button cancel=(Button)view.findViewById(R.id.cancel);
 cancel.setTag("cancel");
 // cancel.setOnClickListener(this);
 }

2.在需要弹出的地方使用

popup.showAtLocation(view, Gravity.BOTTOM, 0, 0);

或者

void

showAsDropDown(View anchor, int xoff, int yoff)Display the content view in a popup window anchored to the bottom-left corner of the anchor view offset by the specified x and y coordinates.

void

showAsDropDown(View anchor)Display the content view in a popup window anchored to the bottom-left corner of the anchor view.

void

showAtLocation(View parent, int gravity, int x, int y)Display the content view in a popup window at the specified location.

其它,动画效果代码(从下至上弹出,从上至下消失)

<?xml version="1.0" encoding="utf-8"?>
< set xmlns:android="http://schemas.android.com/apk/res/android">

 <translate

 android:toYDelta="100%p"
 android:duration="600"
 />
 </set>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值