第七十八讲:用户界面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等),可以设置偏移或无偏移

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

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

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:id="@+id/main"
    tools:context="com.example.popupwindow.MainActivity$PlaceholderFragment" >

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

      <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>

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

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    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>

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

public class MainActivity extends Activity implements View.OnClickListener,
		OnCheckedChangeListener {
	private Button btn01;
	private Button btn02;
	private Button btn03;
	private Button btn04;
	private PopupWindow pop;
	// 屏幕的width
	private int mScreenWidth;
	// 屏幕的height
	private int mScreenHeight;
	// PopupWindow的width
	private int mPopupWindowWidth;
	// PopupWindow的height
	private int mPopupWindowHeight;

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);

		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();
	}

	@Override
	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 layoutInflater = LayoutInflater.from(this);
		View popupWindow = layoutInflater.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, 380);

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

	@Override
	public void onCheckedChanged(RadioGroup arg0, int arg1) {
		pop.dismiss();
	}

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

}

本讲就到这里,Take your time and enjoy it

时间: 2024-10-29 15:59:51

第七十八讲:用户界面View之PopupWindow的相关文章

QT开发(三十八)——Model/View框架编程

QT开发(三十八)--Model/View框架编程 一.自定义模型 1.自定义只读模型 QAbstractItemModel为自定义模型提供了一个足够灵活的接口,能够支持数据源的层次结构,能够对数据进行增删改操作,还能够支持拖放.QT提供了 QAbstarctListModel和QAbstractTableModel两个类来简化非层次数据模型的开发,适合于结合列表和表格使用. 自定义模型需要考虑模型管理的的数据结构适合的视图的显示方式.如果模型的数据仅仅用于列表或表格的显示,那么可以使用QAbs

中文数字转换成阿拉伯数字(一千二百三十四万五千六百七十八--&gt;12345678)

昨天老大问我又没有写过中文数字转换成阿拉伯数字,我说没有,我说那应该简单啊,就是将中文对应的数字换成阿拉伯数字就好了啊,比如一就换成1,二就换成2…十换成10.可是那么问题来了…… 一十二呢…不能是1102吧…这不就坑爹了吗?一百万呢………所有我苦苦思索,花费了我差不多半天的时间,终于写出了下面的程序. 1 public static void main(String[] args){ 2 3 Map<Character, String> numberMap = new HashMap<

Unity3D研究院之Jenkins的使用(七十八)

长夜漫漫无心睡眠,来一篇嘿嘿.我相信如果已经用Shell脚本完成IOS和Android打包的朋友一定需要Jenkins 怎么才能让策划打包ipa和apk?怎么才能彻底省去程序的时间,只要在同一局域网内不需要unity的开发环境,只要它有浏览器,它就能打包Jenkins无疑是最佳选择. Unity3D研究院之IOS全自动编辑framework.plist.oc代码(六十七) Unity3D研究院之IOS全自动打包生成ipa(六十八) Unity3D研究院之Android全自动打包生成apk(六十九

第七十二讲:Chronometer定时器(二)

智者创造机会,强者把握机会,弱者等待机会. 本讲内容:定时器 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_p

第二十八讲:Android之Animation(三)

我们不得不饮食.睡眠.游玩.恋爱,也就是说,我们不得不接触生活中最甜蜜的事情,不过我们必须不屈服于这些事物.-- 居里夫人 本讲内容:补间动画 Tween Animation 前面我们只学习了实现单个动画效果,本讲将同时实现多个动画效果: 我们通过一个例子感受一下,代码的讲解都写在注释里了 下面是res/layout/activity_main.xml 布局文件: <LinearLayout xmlns:android="http://schemas.android.com/apk/res

Scala 第十八讲 高阶函数 从大数据菜鸟走上大师的历程

来自原大数据王家林视频视频 23讲 var triple = (x : Double) => 3 * x //> triple  : Double => Double =     Array(3.14, 1.42, 2.0).map((x : Double) => 3 * x)                                                   //> res0: Array[Double] = Array(9.42, 4.26, 6.0)  

UI第十八讲.初级数据持久化

一.什么是沙盒机制 获取沙盒路径的方法: 1 //第一种 获取沙盒路径的方法 2 NSString *pathStr = NSUserName(); 3 NSString *homePathStr = NSHomeDirectoryForUser(pathStr); 4 NSLog(@"%@",homePathStr); 5 //第二种 获取沙盒路径的方法 6 NSString *homePathStr1 = NSHomeDirectory(); 7 NSLog(@"%@&q

Unity3D教程宝典之Shader篇:第十八讲贴图与光影

转载自风宇冲Unity3D教程学院 从本讲开始讲一些特效贴图.这些贴图大多数是在不采用高精度模型的情况下,以较小的代价获得最好的画面效果.而涉及的主要是与光有关的运算. (1) Bump Mapping 凹凸贴图 (2) Normal Mapping 法线贴图 (3) Parallax Mapping 视差贴图 (4) Displacement Mapping 位移贴图 (5) ReliefMapping 浮雕纹理贴图 (6) ParallaxOcclusionMapping 视差阻塞贴图 (7

053(七十八)

386. 386.You have just performed a FLASHBACK TABLE operation using the following command: flashback table employees to scn 123456; The employees table has triggers associated with it. Which of the following statements is true regarding the state of t