android之PopupWindow详解一

Android对话框

Android的对话框有两种:PopupWindowAlertDialog。它们的不同点在于:

1)AlertDialog的位置固定,而PopupWindow的位置可以随意

2)AlertDialog是非阻塞线程,而PopupWindow是阻塞线程。

PopupWindow简介

PopupWindow的位置按照有无偏移,可以分为有偏移和无偏移;按照参照物的不同可以分为相对于某个控件(Anchor锚)和相对于父控件,具体如下所示:

showAsDropDown(View anchor):相对于某个控件的位置(正左下方),无偏移

showAsDropDown(View anchor , int xoff , int yoff ):相对于某个控件的位置,有偏移

showAtLocation( View parent , int gravity , int x , int y ):相对于父控件的位置(例如正中央,Gravity.CENTER,下方Gravity.BOTTOM等)可以设置有偏移或无偏移。

案例:PopupWindow的简单应用

为了让大家更加地了解PopupWindow方法的使用,因此在这个例子中会通过如下图所示的效果来实现:

   

以自己为anchor,不偏移                                                         以自己为anchor,有偏移

 

   

以屏幕中心为参照,不偏移(正中间)                            以屏幕下方为参照,下方中间

 

主要的代码如下所示:

package zjh.android.lx;
 
import android.app.Activity;
import android.os.Bundle;
import android.view.Gravity;
import android.view.LayoutInflater;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.PopupWindow;
import android.widget.RadioGroup;
import android.widget.RadioGroup.OnCheckedChangeListener;
 
public class MainActivity extends Activity implements OnClickListener,
OnCheckedChangeListener {
private Button btn1, btn2, btn3, btn4;
private PopupWindow popupWindow;
 
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
super.setContentView(R.layout.activity_main);
// 取得相应的组件id
this.btn1 = (Button) super.findViewById(R.id.btn1);
this.btn2 = (Button) super.findViewById(R.id.btn2);
this.btn3 = (Button) super.findViewById(R.id.btn3);
this.btn4 = (Button) super.findViewById(R.id.btn4);
// 为按钮绑定监听事件
this.btn1.setOnClickListener(this);
this.btn2.setOnClickListener(this);
this.btn3.setOnClickListener(this);
this.btn4.setOnClickListener(this);
 
}
 
@Override
public void onCheckedChanged(RadioGroup group, int checkedId) {
popupWindow.dismiss();
}
 
@Override
public void onClick(View v) {
switch (v.getId()) {
// 相对某个控件的位置(正左下方),无偏移
case R.id.btn1:
MainActivity.this.getPopupWindowInstance();
popupWindow.showAsDropDown(v);
break;
// 相对某个控件的位置(正左下方),有偏移
case R.id.btn2:
getPopupWindowInstance();
popupWindow.showAsDropDown(v, 50, 50);
break;
// 相对于父控件的位置,无偏移
case R.id.btn3:
getPopupWindowInstance();
popupWindow.showAtLocation(v, Gravity.CENTER, 0, 0);
break;
// 相对于父控件的位置,有偏移
case R.id.btn4:
getPopupWindowInstance();
popupWindow.showAtLocation(v, Gravity.CENTER, 0, 50);
break;
 
default:
break;
}
}
 
// 获取PopupWindow实例
private void getPopupWindowInstance() {
// 判断PopupWindow是否存在
if (popupWindow != null) {
// 存在,则隐藏
popupWindow.dismiss();
return;
} else {
// 不存在,则初始化PopupWindow
initPopupWindow();
}
}
 
// 创建PopupWindow
private void initPopupWindow() {
LayoutInflater inflater = LayoutInflater.from(this);
View view = inflater.inflate(R.layout.popupwindow, null);
RadioGroup group = (RadioGroup) view.findViewById(R.id.status);
group.setOnCheckedChangeListener(this);
/**
 * 创建一个PopupWindow 参数1:contentView指定PopupWindow的内容
 * 参数2:width指定PopupWindow的宽度 参数3:height指定PopupWindow的高度
 */
popupWindow = new PopupWindow(view, 100, 130);
}
 
}
 

至此,PopupWindow的基本使用就介绍完毕了。


源码下载

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值