探索Popupwindow-对话框风格的窗口

Android中还是会经常用到Popupwindow,一种类似于对话框风格的窗口,当然类似于对话框风格也可以用Activity,可以参考:Android中使用Dialog风格弹出框的Activity
一般使用Popupwindow创建对话框风格的窗口只需要两部:
(1)调用Popupwindow的构造函数创建Popupwindow对象,例如

PopupWindow popupWindow = new PopupWindow(root, ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT);

(2)调用Popupwindow的showAsDropDown(View v)将Popupwindow作为v组件的下拉组件显示出来;或者调用Popupwindow的showAtLocation()方法将Popupwindow在指定位置显示。两者可以一起设置

下面就要开始动手啦
首先在activity_main.xml布局文件中添加设置按钮,用于当点击这个按钮时弹出Popupwindow-对话框风格的窗口

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="@dimen/activity_tabhost_height"
        android:background="@color/blue">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:text="探索Popupwindow"
            android:textColor="@color/white"
            android:textSize="@dimen/acitvity_title_size" />

        <TextView
            android:id="@+id/tv_set"
            android:layout_width="75dp"
            android:layout_height="match_parent"
            android:layout_alignParentRight="true"
            android:gravity="center"
            android:text="设置"
            android:textColor="@color/white"
            android:textSize="@dimen/acitvity_title_size" />
    </RelativeLayout>
</LinearLayout>

然后再创建一个叫activity_set.xml的布局文件,用于点击设置按钮时加载将显示对话框风格的窗口的XML布局文件

<?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="wrap_content"
    android:background="@color/white"
    android:orientation="vertical">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="65dp"
        android:orientation="horizontal"
        android:paddingLeft="@dimen/acitvity_margin"
        android:paddingRight="@dimen/acitvity_margin">

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:orientation="horizontal">

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:gravity="center"
                android:text="上班时间:"
                android:textColor="@color/grey"
                android:textSize="@dimen/size_text_medium" />

            <Button
                android:id="@+id/tv_signin_time"
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:background="@color/white"
                android:gravity="center"
                android:text="9:00"
                android:textColor="@color/grey"
                android:textSize="@dimen/size_text_medium" />
        </LinearLayout>

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:orientation="horizontal">

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:gravity="center"
                android:text="下班时间:"
                android:textColor="@color/grey"
                android:textSize="@dimen/size_text_medium" />

            <Button
                android:id="@+id/tv_signout_time"
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:background="@color/white"
                android:gravity="center"
                android:text="18:00"
                android:textColor="@color/grey"
                android:textSize="@dimen/size_text_medium" />
        </LinearLayout>
    </LinearLayout>

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="65dp"
        android:paddingLeft="@dimen/acitvity_margin"
        android:paddingRight="@dimen/acitvity_margin">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_alignParentLeft="true"
            android:gravity="center"
            android:text="公司位置:"
            android:textColor="@color/grey"
            android:textSize="@dimen/size_text_medium" />

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:layout_centerInParent="true"
            android:gravity="center"
            android:padding="5dp"
            android:text="重新定位"
            android:textColor="@color/blue"
            android:textSize="@dimen/size_text_medium" />
    </RelativeLayout>

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="65dp"
        android:paddingLeft="@dimen/acitvity_margin"
        android:paddingRight="@dimen/acitvity_margin">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_alignParentLeft="true"
            android:gravity="center"
            android:text="设置管理员:"
            android:textColor="@color/grey"
            android:textSize="@dimen/size_text_medium" />

        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_alignParentRight="true"
            android:gravity="center"
            android:src="@mipmap/icon_toright" />
    </RelativeLayout>

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="65dp"
        android:paddingLeft="@dimen/acitvity_margin"
        android:paddingRight="@dimen/acitvity_margin">

        <Button
            android:id="@+id/btn_exit"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_alignParentRight="true"
            android:background="@color/white"
            android:gravity="center"
            android:text="关闭popupWindow"
            android:textColor="@drawable/selector_text"
            android:textSize="@dimen/size_text_medium" />
    </RelativeLayout>
</LinearLayout>

接下来就是MainActivity.class程序开始的主布局文件啦

package com.xiaolijuan.popupwindowdome;

import android.app.Activity;
import android.os.Bundle;
import android.view.Gravity;
import android.view.View;
import android.view.ViewGroup;
import android.widget.PopupWindow;
import android.widget.TextView;

public class MainActivity extends Activity implements View.OnClickListener {
    private TextView mTvSet;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        mTvSet = (TextView) findViewById(R.id.tv_set);

        mTvSet.setOnClickListener(this);
    }

    @Override
    public void onClick(View v) {
        //加载点击设置按钮时将显示对话框风格的窗口的XML布局文件
        View root = this.getLayoutInflater().inflate(
                R.layout.activity_set, null);
        //创建popupWindow对象(对话框窗口)
        final PopupWindow popupWindow = new PopupWindow(root, ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT);
        //以下拉的方式显示
        popupWindow.showAsDropDown(v);
        //将popupWindow显示在制定位置,在这里作为mTvSet组件的下拉组件显示出来
        popupWindow.showAtLocation(findViewById(R.id.tv_set),
                Gravity.CENTER, 0, 0);
        root.findViewById(R.id.btn_exit).setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                popupWindow.dismiss();
            }
        });
    }
}

其中点击btn_exit按钮时候,使用popupWindow.dismiss()方法将Popupwindow窗口关闭
效果如下图:



那么现在问题来了,我只能通过点击关闭按钮,我才可以关闭这个窗口么?如果我想点击窗口以外的地方即可关闭窗口呢,那么也设置这样两句代码,如下:

//触摸popupwindow外部,使popupWindow可以消失就必须要设置背景
        popupWindow.setBackgroundDrawable(new BitmapDrawable());
        //不设置默认的就是False
        popupWindow.setOutsideTouchable(true);

这两句代码必须设置在Popupwindow的showAsDropDown(View v)方法或者Popupwindow的showAtLocation()方法之前
完整版:

package com.xiaolijuan.popupwindowdome;

import android.app.Activity;
import android.graphics.drawable.BitmapDrawable;
import android.os.Bundle;
import android.view.Gravity;
import android.view.View;
import android.view.ViewGroup;
import android.widget.PopupWindow;
import android.widget.TextView;

public class MainActivity extends Activity implements View.OnClickListener {
    private TextView mTvSet;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        mTvSet = (TextView) findViewById(R.id.tv_set);

        mTvSet.setOnClickListener(this);
    }

    @Override
    public void onClick(View v) {
        //加载点击设置按钮时将显示对话框风格的窗口的XML布局文件
        View root = this.getLayoutInflater().inflate(
                R.layout.activity_set, null);
        //创建popupWindow对象(对话框窗口)
        final PopupWindow popupWindow = new PopupWindow(root, ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT);
        //触摸popupwindow外部,使popupWindow可以消失就必须要设置背景
        popupWindow.setBackgroundDrawable(new BitmapDrawable());
        //不设置默认的就是False
        popupWindow.setOutsideTouchable(true);
        //以下拉的方式显示
        popupWindow.showAsDropDown(v);
        //将popupWindow显示在制定位置,在这里作为mTvSet组件的下拉组件显示出来
        popupWindow.showAtLocation(findViewById(R.id.tv_set),
                Gravity.CENTER, 0, 0);
        root.findViewById(R.id.btn_exit).setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                popupWindow.dismiss();
            }
        });
    }
}

当然这一功能还可以使用Activity 的OnTouchEvent事件做到,OnTouchEvent指的是Activity 获得事件(即在PopupWindow窗口之外)
Dome下载

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,723评论 6 481
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,485评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 152,998评论 0 344
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,323评论 1 279
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,355评论 5 374
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,079评论 1 285
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,389评论 3 400
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,019评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,519评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,971评论 2 325
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,100评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,738评论 4 324
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,293评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,289评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,517评论 1 262
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,547评论 2 354
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,834评论 2 345

推荐阅读更多精彩内容