今天了解到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. AngularJS学习篇(五)

    AngularJS Scope(作用域) Scope(作用域) 是应用在 HTML (视图) 和 JavaScript (控制器)之间的纽带. Scope 是一个对象,有可用的方法和属性. Scope ...

  2. onload、DOMContentLoaded与性能问题

    onload.DOMContentLoaded与性能问题 onload事件 DomContentLoaded   1.onload事件 onload事件一般在所有的文档内容加载完成后触发,如果网页中图 ...

  3. C#中结构体定义并转换字节数组

    最近的项目在做socket通信报文解析的时候,用到了结构体与字节数组的转换:由于客户端采用C++开发,服务端采用C#开发,所以双方必须保证各自定义结构体成员类型和长度一致才能保证报文解析的正确性,这一 ...

  4. Maven2的配置文件settings.xml

    简介: 概览 当Maven运行过程中的各种配置,例如pom.xml,不想绑定到一个固定的project或者要分配给用户时,我们使用settings.xml中的settings元素来确定这些配置.这包含 ...

  5. Struts2-Tiles整合

    Apache Tiles是一个JavaEE应用的页面布局框架.Tiles框架提供了一种模板机制,可以为某一类页面定义一个通用的模板,该模板定义了页面的整体布局.布局由可以复用的多个块组成,每个页面可以 ...

  6. 检测应用的内存泄漏情况(shell)

    写代码--调试--修BUG 改来改去可能还存在一些没发现的问题,在工程量大的时候更容易出现,例如内存泄漏这样的问题,严重影响着系统性能. 网上有些检测C程序是否存在内存泄漏的工具还不错的,例如valg ...

  7. [C#]使用dnSpy对目标程序(EXE或DLL)进行反编译修改并编译运行

    本文为原创文章.源代码为原创代码,如转载/复制,请在网页/代码处明显位置标明原文名称.作者及网址,谢谢! 本文使用的工具下载地址为: https://github.com/cnxy/dnSpy/arc ...

  8. PowerShell 操作 Azure Blob Storage

    本文假设已经存在了一个 Azure Storage Account,需要进行文件的上传,下载,复制,删除等操作.为了方便查看 PowerShell 代码执行的结果,本文使用了 MS 发布的一个 Azu ...

  9. P1132 数字生成游戏

    题目请见:传送门 以下为题解,直接从洛谷上搬过来的,还专门改了markdown,(汗) 宽搜 with 一些技巧 由于查询量很大,所以要预先处理所有答案 预处理当然是用BFS,并同时进行delete, ...

  10. 十五、Hadoop学习笔记————Zookeeper的环境搭建

    linux中/opt一般用来存放应用/var目录一般用来存放日志 sample为样例文件,复制一份zoo.cfg文件 配置zoo文件,id为服务器id(整数),host为服务器的ip地址,第一个por ...