今天了解到PopupWindows这个布局,PopupWindow这个类用来实现一个弹出框,能够使用随意布局的View作为其内容,这个弹出框是悬浮在当前activity之上的。

以下是一个实例

xml文件

<LinearLayout

        android:id="@+id/ll_popup"

        android:layout_width="match_parent"

        android:layout_height="wrap_content"

        android:layout_alignParentBottom="true"

        android:background="#ffffff"

        android:orientation="vertical" >



        <TextView

            android:layout_width="match_parent"

            android:layout_height="1dp"

            android:background="#ff495a" />



        <LinearLayout

            android:layout_width="match_parent"

            android:layout_height="55dp"

            android:orientation="horizontal" >



            <Button

                android:id="@+id/item_popupwindows_camera"

                android:layout_width="match_parent"

                android:layout_height="55dp"

                android:background="@drawable/bt_nobgd"

                android:textColor="#585858"

                android:textSize="18sp"

                android:text="拍照" />

        </LinearLayout>



        <TextView

            android:layout_marginLeft="80dp"

            android:layout_width="match_parent"

            android:layout_height="1px"

            android:background="#f2f2f2" />



        <LinearLayout

            android:layout_width="match_parent"

            android:layout_height="55dp"

            android:orientation="horizontal" >



            <Button

                android:id="@+id/item_popupwindows_Photo"

                android:layout_width="match_parent"

                android:layout_height="55dp"

                android:background="@drawable/bt_nobgd"

                android:textColor="#585858"

                android:textSize="18sp"

                android:text="从相冊中选取" />

        </LinearLayout>



        <TextView

            android:layout_width="match_parent"

            android:layout_height="2dp"

            android:background="#f3f3f3" />



        <Button

            android:id="@+id/item_popupwindows_cancel"

            android:layout_width="match_parent"

            android:layout_height="55dp"

            android:background="@drawable/bt_nobgd"

            android:textColor="#585858"

            android:textSize="18sp"

            android:text="取消" />

    </LinearLayout>

MainActivity文件   用来实现拍照获取本地图库的功能。

package cn.pb.activity;





import java.io.File;



import com.example.pb_android.R;



import android.app.Activity;

import android.content.Context;

import android.content.Intent;

import android.graphics.drawable.BitmapDrawable;

import android.net.Uri;

import android.os.Bundle;

import android.os.Environment;

import android.provider.MediaStore;

import android.view.Gravity;

import android.view.View;

import android.view.View.OnClickListener;

import android.view.ViewGroup.LayoutParams;

import android.view.animation.AnimationUtils;

import android.view.Window;

import android.widget.Button;

import android.widget.LinearLayout;

import android.widget.PopupWindow;

import android.widget.TextView;



public class MainActivity extends Activity implements OnClickListener{



    private TextView t_send,t_ragion;

    private Button btn_images;

    

    @Override

    protected void onCreate(Bundle savedInstanceState) {

        super.onCreate(savedInstanceState);

        this.requestWindowFeature(Window.FEATURE_NO_TITLE);  

        setContentView(R.layout.activity_main);

        Init();

    }

    public void Init(){

        t_send = (TextView) findViewById(R.id.t_send);

        btn_images = (Button) findViewById(R.id.btn_images);

        t_ragion = (TextView) findViewById(R.id.t_ragion);

        

        t_send.setOnClickListener(this);

        btn_images.setOnClickListener(this);

        t_ragion.setOnClickListener(this);

    }

    @Override

    public void onClick(View v) {

        switch (v.getId()) {

        case R.id.t_send:

            break;

        case R.id.btn_images:

            new PopupWindows(MainActivity.this, v);

            break;

        case R.id.t_ragion:

            break;

        default:

            break;

        }

    }

    

    public class PopupWindows extends PopupWindow {



        public PopupWindows(Context mContext, View parent) {



            View view = View

                    .inflate(mContext, R.layout.item_popupwindows, null);

            view.startAnimation(AnimationUtils.loadAnimation(mContext,

                    R.anim.fade_ins));

            LinearLayout ll_popup = (LinearLayout) view

                    .findViewById(R.id.ll_popup);

            ll_popup.startAnimation(AnimationUtils.loadAnimation(mContext,

                    R.anim.push_bottom_in_2));



            setWidth(LayoutParams.FILL_PARENT);

            setHeight(LayoutParams.FILL_PARENT);

            setBackgroundDrawable(new BitmapDrawable());

            setFocusable(true);

            setOutsideTouchable(true);

            setContentView(view);

            showAtLocation(parent, Gravity.BOTTOM, 0, 0);

            update();

            Button bt1 = (Button) view

                    .findViewById(R.id.item_popupwindows_camera);

            Button bt2 = (Button) view

                    .findViewById(R.id.item_popupwindows_Photo);

            Button bt3 = (Button) view

                    .findViewById(R.id.item_popupwindows_cancel);

            bt1.setOnClickListener(new OnClickListener() {

                public void onClick(View v) {

                    Intent intent = new Intent(

                            MediaStore.ACTION_IMAGE_CAPTURE);

                    // 以下这句指定调用相机拍照后的照片存储的路径

                    intent.putExtra(MediaStore.EXTRA_OUTPUT, Uri

                            .fromFile(new File(Environment

                                    .getExternalStorageDirectory(),

                                    "imageTemp.jpg")));

                    startActivityForResult(intent, 2);

                    dismiss();     //关闭Pop窗体

                }

            });

            bt2.setOnClickListener(new OnClickListener() {

                public void onClick(View v) {

                    Intent intent = new Intent(Intent.ACTION_PICK, null);

                    intent.setDataAndType(

                            MediaStore.Images.Media.EXTERNAL_CONTENT_URI,

                            "image/*");// 调用android的图库

                    startActivityForResult(intent, 1);

                    dismiss();

                }

            });

            bt3.setOnClickListener(new OnClickListener() {

                public void onClick(View v) {

                    dismiss();

                }

            });

        }

    }



}

Android PopupWindows的更多相关文章

  1. Android PopupWindows使用

    源码测试示例: package com.example.popupwindown; import android.os.Bundle; import android.app.Activity; imp ...

  2. Android高手速成--第一部分 个性化控件(View)

    第一部分 个性化控件(View) 主要介绍那些不错个性化的View,包括ListView.ActionBar.Menu.ViewPager.Gallery.GridView.ImageView.Pro ...

  3. 据说年薪30万的Android程序员必须知道的帖子

    Android中国开发精英 目前包括: Android开源项目第一篇--个性化控件(View)篇       包括ListView.ActionBar.Menu.ViewPager.Gallery.G ...

  4. Android开源项目分类汇总

    目前包括: Android开源项目第一篇——个性化控件(View)篇   包括ListView.ActionBar.Menu.ViewPager.Gallery.GridView.ImageView. ...

  5. android 很多牛叉布局github地址(转)

    原文地址 http://blog.csdn.net/luo15309823081/article/details/41449929 点击可到达github-------https://github.c ...

  6. GitHub上史上最全的Android开源项目分类汇总 (转)

    GitHub上史上最全的Android开源项目分类汇总 标签: github android 开源 | 发表时间:2014-11-23 23:00 | 作者:u013149325 分享到: 出处:ht ...

  7. !! 据说年薪30万的Android程序员必须知道事

    http://www.th7.cn/Program/Android/201512/742423.shtml Android中国开发精英 目前包括: Android开源项目第一篇——个性化控件(View ...

  8. 【Android】Android开源项目分类汇总

    第一部分 个性化控件(View) 主要介绍那些不错个性化的View,包括ListView.ActionBar.Menu.ViewPager.Gallery.GridView.ImageView.Pro ...

  9. GitHub 优秀的 Android 开源项目(转)

    今天查找资源时看到的一篇文章,总结了很多实用资源,十分感谢原作者分享. 转自:http://blog.csdn.net/shulianghan/article/details/18046021 主要介 ...

随机推荐

  1. svg snap 笔记

    路径中的字母,大写相对于左上角绝对定位,小写相对定位  M110,95,95,110M115,100,100,115   pattern 类似于图片拼贴,可以把指定位置的图案用来填充 var patt ...

  2. Cocoapods使用过程中遇到的问题

    前言:记录一些在CocoaPods使用过程中遇到的问题,本地环境:Xcode9.0 发现有的时候在执行pod init的时候不能正常地创建出来pod File文件,显示的错误如下: ――― MARKD ...

  3. JavaScript系列----数据类型以及传值和传引用

    1.简单数据类型 在JavaScript中简单数据类型分为5种.分别为 Undefined, Null,Boolean,Number,String. Undefined类型Undefined类型只有一 ...

  4. 2017年11月1日 初学者易上手的SSH-spring 01控制反转(IOC)

    这章开始学习SSH中最后的一个框架spring.Spring是一个开放源代码的设计层面框架,他解决的是业务逻辑层和其他各层的松耦合问题,因此它将面向接口的编程思想贯穿整个系统应用. 首先就来学习一下I ...

  5. 动态代理:JDK动态代理和CGLIB代理的区别

    代理模式:代理类和被代理类实现共同的接口(或继承),代理类中存有指向被代理类的索引,实际执行时通过调用代理类的方法.实际执行的是被代理类的方法. 而AOP,是通过动态代理实现的. 一.简单来说: JD ...

  6. Node做中转服务器,转发接口

    查询各种资料,和整理网上一哥们不完整的接口.做成,可以使用的转发服务! 由于项目在做前后端分离,牵扯跨域和夸协议问题,临时抱佛脚,选择用nodejs做中转,我想应该好多人都用它.但是做普通的表单转发没 ...

  7. 如何在ASP.NET Core Web API测试中使用Postman

    使用Postman进行手动测试 如果您是开发人员,测试人员或管理人员,则在构建和使用应用程序时,有时了解各种API方法可能是一个挑战. 使用带有.NET Core的Postman为您的Web API生 ...

  8. 爬虫入门 手写一个Java爬虫

    本文内容 涞源于  罗刚 老师的 书籍 << 自己动手写网络爬虫一书 >> ; 本文将介绍 1: 网络爬虫的是做什么的?  2: 手动写一个简单的网络爬虫; 1: 网络爬虫是做 ...

  9. javaweb-番外篇-Commons-FileUpload组件上传文件

    一.Commons-FileUpload简介 Commons-FileUpload组件 Commons是Apache开放源代码组织的一个Java子项目,其中的FileUpload是用来处理HTTP文件 ...

  10. CathyCMS-后台管理v1.0

    摘要: 最近开发CathyCMS系统作为练手项目,后台管理部分v1.0暂时告一段落.目前只包含了基本的登录.权限管理.频道管理.文章管理功能. 项目地址: https://github.com/cat ...