用户界面View之PopupWindow

命运掌握在自己手中。要么你驾驭生命,要么生命驾驭你,你的心态决定你是坐骑还是骑手。


本讲内容:PopupWindow 弹出窗口控件


一、PopupWindow 弹出窗口控件认识

1、Android的对话框有两种:PopupWindow和AlertDialog。各有各特点

2、它们的不同点在于:

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

AlertDialog是非阻塞线程的,而PopupWindow是阻塞线程的

3、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等),可以设置偏移或无偏移

4、DisplayMetrics类

Andorid.util 包下的DisplayMetrics 类提供了一种关于显示的通用信息,如显示大小,分辨率和字体。

为了获取DisplayMetrics 成员,首先初始化一个对象如下:

DisplayMetrics metric= new DisplayMetrics();   Log.d("yujian<<", display.toString());//直接在这里输出,信息都是0.

getWindowManager().getDefaultDisplay().getMetrics(metric);// 将当前窗口的一些信息放在DisplayMetrics类中

Log.d("yujian<<", display.toString());//然后就可以通过dispalyMetrics类来获取当前窗口的一些信息

 

5、PopupWindow常用方法

mPop.setWidth(int )
mPop.setHeight(int )//设置弹出框大小

设置进场动画:
mPop.setAnimationStyle(R.style.AnimationPreview);

mPop.setOutsideTouchable(true);//这里设置显示PopuWindow之后在外面点击是否有效。

 

 1、如果PopupWindow中的listview无响应( 这个主要是因为show写在了setFocusable前面)

2、点击PopupWindow外面区域,不会自动dismiss

  这个主要可能是没有调用setBackgroundDrawable以及setOutsideTouchable,

  当然了,你肯定还得写响应监听这个动作Pop.setTouchInterceptor(new OnTouchListener() {}

3、弹出框不会在按下Back键的时候消失,setBackgroundDrawable(new BitmapDrawable());是因为没有设置背景

二、我们通过一个例子感受一下,代码的讲解都写在注释里了,所以我就直接上代码和代码的运行结果。


下面是res/layout/activity_main.xml 布局文件:

<span style="font-size:18px;"><span style="font-size:18px;"><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context="com.example.popupwindow.MainActivity$PlaceholderFragment" >

    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:text="popup demo"
        android:textSize="30sp" />

    <Button
        android:id="@+id/btn01"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="以自己为中心,不偏移" />

    <Button
        android:id="@+id/btn02"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="以自己为中心,有偏移" />

    <Button
        android:id="@+id/btn03"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="以屏幕中心为参照,不偏移(正中间)" />

    <Button
        android:id="@+id/btn04"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="以屏幕下方为参照,下方中间" />

</LinearLayout></span></span>


下面是res/layout/popup_window.xml 布局文件:

<span style="font-size:18px;"><span style="font-size:18px;"><?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#0f0"
    android:orientation="vertical" >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="选择状态:"
        android:textColor="@android:color/white"
        android:textSize="30sp" />

    <RadioGroup
        android:id="@+id/radioGroup"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="vertical" >

        <RadioButton android:text="在线" />

        <RadioButton android:text="离线" />

        <RadioButton android:text="隐身" />
    </RadioGroup>

</LinearLayout></span></span>


下面是MainActivity.java主界面文件:

<span style="font-size:18px;"><span style="font-size:18px;">public class MainActivity extends Activity implements OnClickListener,OnCheckedChangeListener {
	private Button btn01;
	private Button btn02;
	private Button btn03;
	private Button btn04;
	private PopupWindow pop;
	private int mScreenWidth;// 屏幕的width
	private int mScreenHeight;// 屏幕的height
	private int mPopupWindowWidth;// PopupWindow的width
	private int mPopupWindowHeight;

	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);
		initUI();
	}

	private void initUI() {
		btn01 = (Button) findViewById(R.id.btn01);
		btn02 = (Button) findViewById(R.id.btn02);
		btn03 = (Button) findViewById(R.id.btn03);
		btn04 = (Button) findViewById(R.id.btn04);
		btn01.setOnClickListener(this);
		btn02.setOnClickListener(this);
		btn03.setOnClickListener(this);
		btn04.setOnClickListener(this);
		initPopupWindow();
	}

	public void onClick(View v) {
		switch (v.getId()) {
		// 相对某个控件的位置(正左下方),无偏移
		case R.id.btn01:
			getPopupWindowInstance();
			pop.showAsDropDown(v);
			break;
		// 相对某个控件的位置(正左下方),有偏移
		case R.id.btn02:
			getPopupWindowInstance();
			pop.showAsDropDown(v, 50, 50);
			break;

		// 相对于父控件的位置,无偏移
		case R.id.btn03:
			getPopupWindowInstance();
			pop.showAtLocation(v, Gravity.CENTER, 0, 0);
			break;

		// 相对于父控件的位置,有偏移
		case R.id.btn04:
			getPopupWindowInstance();
			pop.showAtLocation(v, Gravity.BOTTOM, 0, 50);
			break;

		}

	}

	private void initPopupWindow() {
		LayoutInflater inflater = getLayoutInflater();
		View popupWindow = inflater.inflate(R.layout.popup_window, null);
		RadioGroup radioGroup = (RadioGroup) popupWindow
				.findViewById(R.id.radioGroup);
		radioGroup.setOnCheckedChangeListener(this);

		// 创建一个PopupWindow
		// 参数1:contentView 指定PopupWindow的内容
		// 参数2:width 指定PopupWindow的width
		// 参数3:height 指定PopupWindow的height
		pop = new PopupWindow(popupWindow, 350, 350);

		// 获取屏幕和PopupWindow的width和height
		mScreenWidth = getWindowManager().getDefaultDisplay().getWidth();
		mScreenHeight = getWindowManager().getDefaultDisplay().getHeight();
		mPopupWindowWidth = pop.getWidth();
		mPopupWindowHeight = pop.getHeight();
	}

	public void onCheckedChanged(RadioGroup group, int checkedId) {
		pop.dismiss();
	}

	// 获取PopupWindow实例
	private void getPopupWindowInstance() {
		if (pop != null) {
			pop.dismiss();
			return;
		} else {
			initPopupWindow();
		}
	}

}
</span></span>


Take your time and enjoy it
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值