android之PopupWindow详解一
Posted zhangjinhuang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android之PopupWindow详解一相关的知识,希望对你有一定的参考价值。
android对话框
Android的对话框有两种:PopupWindow和AlertDialog。它们的不同点在于:
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的基本使用就介绍完毕了。
以上是关于android之PopupWindow详解一的主要内容,如果未能解决你的问题,请参考以下文章
Android 高级UI设计笔记19:PopupWindow使用详解