Android—PopupWindow的简单使用
PopupWindow 是一个可以显示在当前 Activity 之上的浮动容器,这个Demo要实现的功能是,点击布局中的两个按钮,进而控制PopupWindow的显示与消失,代码中有详细的注释首先看一下效果展示:
在上代码之前,先总结一下PopupWindow的用法:
:实例化PopupWindow的对象,三个参数分别对应:填充的布局文件、在当前Activity上所占的宽、高
PopupWindow popupWindow= new PopupWindow(contentView, LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT);
:完成第一步所需要的布局文件,并实例出来
View contentView = mLayoutInflater.inflate(R.layout.pop, null)
:设置PopupWindow 所必备的两个属性
//popupWindow的背景
()popupWindow.setBackgroundDrawable(......);
//popupWindow要显示的位置
()popupWindow.showAtLocation(View parent, int gravity, int x, int y)
接下来,上代码!
popupWindow所要添加的布局文件:popu_layout.xml
<?xml version="1.0" encoding="utf-8"?>
<GridLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#87cdff"
android:columnCount=""
android:orientation="horizontal"
android:rowCount=""> <ImageView
android:layout_width="65dp"
android:layout_height="65dp"
android:layout_margin="12dp"
android:background="@drawable/icon_bank_gongshang" /> <ImageView
android:layout_width="65dp"
android:layout_height="65dp"
android:layout_margin="12dp"
android:background="@drawable/icon_bank_guangda" /> <ImageView
android:layout_width="65dp"
android:layout_height="65dp"
android:layout_margin="12dp"
android:background="@drawable/icon_bank_jianhang" /> <ImageView
android:layout_width="65dp"
android:layout_height="65dp"
android:layout_margin="12dp"
android:background="@drawable/icon_bank_jiaotong" /> <ImageView
android:layout_width="65dp"
android:layout_height="65dp"
android:layout_margin="12dp"
android:background="@drawable/icon_bank_minsheng" /> <ImageView
android:layout_width="65dp"
android:layout_height="65dp"
android:layout_margin="12dp"
android:background="@drawable/icon_bank_nongye" /> <ImageView
android:layout_width="65dp"
android:layout_height="65dp"
android:layout_margin="12dp"
android:background="@drawable/icon_bank_gongshang" /> <ImageView
android:layout_width="65dp"
android:layout_height="65dp"
android:layout_margin="12dp"
android:background="@drawable/icon_bank_pingan" /> <ImageView
android:layout_width="65dp"
android:layout_height="65dp"
android:layout_margin="12dp"
android:background="@drawable/icon_bank_zhaoshang" /> <ImageView
android:layout_width="65dp"
android:layout_height="65dp"
android:layout_margin="12dp"
android:background="@drawable/icon_bank_youzheng" /> <ImageView
android:layout_width="65dp"
android:layout_height="65dp"
android:layout_margin="12dp"
android:background="@drawable/icon_bank_xingye" /> <ImageView
android:layout_width="65dp"
android:layout_height="65dp"
android:layout_margin="12dp"
android:background="@drawable/icon_bank_pufa" />
</GridLayout>
相当简单的布局,做出来就是这么一个玩意:
MainActivity:
package com.example.wgh.popupwindow;
import android.graphics.drawable.ColorDrawable;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.Gravity;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.Button;
import android.widget.GridLayout;
import android.widget.PopupWindow; public class MainActivity extends AppCompatActivity { private View mPopView = null;
private Button showPopupWindow = null;
private Button dismissPopupWindow = null;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main); initView();
showPopupWindow.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
showPopupWindow();
}
});
} private void initView() {
showPopupWindow = (Button) findViewById(R.id.showPopupWindow);
dismissPopupWindow = (Button) findViewById(R.id.dismissPopupWindow);
/**
* 实例popupWindow要添加的布局
*/
mPopView = LayoutInflater.from(this).inflate(R.layout.popu_layout, null);
} private void showPopupWindow() {
/**
* 实例popupWindow对象
*/
PopupWindow popupWindow = new PopupWindow(mPopView, GridLayout.LayoutParams.MATCH_PARENT, GridLayout.LayoutParams.WRAP_CONTENT);
//设置popupWindow中的item可以被点击,这句话是必须要添加的
popupWindow.setFocusable(true);
//设置PopupWindow的背景
//如果不设置背景,会导致无论是点击外部区域还是Back键都无法dismiss掉popupWindow
ColorDrawable dw = new ColorDrawable(0xb0000000);
popupWindow.setBackgroundDrawable(dw);
//设置popupWindow显示的位置
popupWindow.showAtLocation(showPopupWindow, Gravity.BOTTOM,,);
}
}
最后说一下关于popupWindow显示位置的属性设置
// 相对某个控件的位置(正左下方),无偏移
popupWindow.showAsDropDown(View anchor)
// 相对某个控件的位置,有偏移,xoff 为 X 轴的偏移量,yoff 为 Y 轴的偏移量
popupWindow.showAsDropDown(View anchor, int xoff, int yoff)
// 在父容器的什么位置,gravity 为相对位置,
//如:正中央 Gravity.CENTER、下方 Gravity.BOTTOM、Gravity.RIGHT|Gravity.BOTTOM 右下方等,后面两个参数为 x/y 轴的偏移量。
popupWindow.showAtLocation(View parent, int gravity, int x, int y)
有兴趣的童鞋可以为popupWindow设置上动画,这样在弹出的时候,不会显得那么突兀,哈哈
如果有什么地方是错误的,请大家批评指正。
Android—PopupWindow的简单使用的更多相关文章
- Android PopupWindow的使用技巧(转)
Android PopupWindow的使用技巧 PopupWindow是Android上自定义弹出窗口,使用起来很方便. PopupWindow的构造函数为 public PopupWindow(V ...
- Android PopupWindow使用方法小结
前几天要用到PopupWindow,一时竟想不起来怎么用,赶紧上网查了查,自己写了个demo,并在此记录一下PopupWindow的用法. 使用场景 PopupWindow,顾名思义,就是弹窗,在很多 ...
- Android PopupWindow Dialog 关于 is your activity running 崩溃详解
Android PopupWindow Dialog 关于 is your activity running 崩溃详解 [TOC] 起因 对于 PopupWindow Dialog 需要 Activi ...
- Android PopupWindow的使用和分析
Android PopupWindow的使用和分析 PopupWindow使用 PopupWindow这个类用来实现一个弹出框,可以使用任意布局的View作为其内容,这个弹出框是悬浮在当前activi ...
- Android.mk文件简单分析
Android.mk文件简单分析 一个Android.mk文件用来向编译系统描写叙述须要编译的源码.详细来说:该文件是GNUMakefile的一小部分.会被编译系统解析一次或多次. 能够在每个Andr ...
- IDA 调试 Android 方法及简单的脱壳实现
IDA 调试 Android 方法及简单的脱壳实现 标签: android原创逆向调试dalvik 2016-05-24 14:24 9286人阅读 评论(3) 收藏 举报 分类: 原创(25) An ...
- android EventBus的简单使用
今天,简单讲讲Android里关于EventBus的使用. 这几天,由于面试的缘故,我听到了很多Android的流行框架,但是之前自己在公司做APP时并没有使用,所以没有了解.于是在网上查找了资料,学 ...
- Android 百度地图 简单实现--- 美食搜索
Android 百度地图 简单实现--- 美食 依赖包: 加入 Android 百度依赖包: 1 key: <!-- 开发人员 key --> <meta-dat ...
- [Android]RecyclerView的简单演示样例
去年google的IO上就展示了一个新的ListView.它就是RecyclerView. 下面是官方的说明,我英语能力有限,只是我大概这么理解:RecyclerView会比ListView更具有拓展 ...
随机推荐
- 精通 WPF UI Virtualization (提升 OEA 框架中 TreeGrid 控件的性能)
原文:精通 WPF UI Virtualization (提升 OEA 框架中 TreeGrid 控件的性能) 本篇博客主要说明如何使用 UI Virtualization(以下简称为 UIV) 来提 ...
- 洛谷 P3391【模板】文艺平衡树(Splay)
题目背景 这是一道经典的Splay模板题--文艺平衡树. 题目描述 您需要写一种数据结构(可参考题目标题),来维护一个有序数列,其中需要提供以下操作:翻转一个区间,例如原有序序列是5 4 3 2 1, ...
- sed的基本用法
了解sed的基本参数 sed匹配的方法: '//'p, 此符号与grep的引号类似,但sed是一定加此符号的,且还要加上-n的参数,匹配起来相当麻烦.sed匹配的方法: '//'pI 加上I的参数是指 ...
- centos下 KeyboardInterrupt 退不出来的结局方法
- win 10 问题
1. windows 10 已联网 ,但 访问应用商店 提示 未连接网络. step1: 打开网络和 internet 设置.. step2: 取消 打圈的 两个选择..!就好.
- plsql11破解注册码
plsql11.0.6.1796-64bit的可以用注册码: Product Code:4t46t6vydkvsxekkvf3fjnpzy5wbuhphqz serial Number: passwo ...
- [转] JavaScript中的Truthy和Falsy介绍
[From] http://www.jb51.net/article/59285.htm 与大多数编程语言一样,JavaScript中存在boolean类型,以供逻辑判断使用.不过,和很多其它编程语言 ...
- 【研究】Weblogic XMLDecoder反序列化漏洞(CVE-2017-10271)
影响范围: Oracle WebLogic Server 10.3.6.0.0版本 Oracle WebLogic Server 12.1.3.0.0版本 Oracle WebLogic Server ...
- C++ GUI Qt4编程(11)-5.1hexSpinbox
1. hexspinbox.cpp /* * The spin box supports integer values but can be extended to use different str ...
- Intellij IDEA 添加项目依赖
https://blog.csdn.net/TaooLee/article/details/51305443 idea导入一个maven项目 https://blog.csdn.net/qq_3837 ...