六狼论坛

 找回密码
 立即注册

QQ登录

只需一步,快速开始

新浪微博账号登陆

只需一步,快速开始

搜索
查看: 88|回复: 0

Android-PopupWindow弹出对话框

[复制链接]

升级  64%

8

主题

8

主题

8

主题

童生

Rank: 1

积分
32
 楼主| 发表于 2012-12-19 23:08:38 | 显示全部楼层 |阅读模式
Android-PopupWindow弹出对话框

<div class="postbody"><div id="cnblogs_post_body">Android的对话框常用的有两种:PopupWindow和AlertDialog。PopupWindow顾名思义为弹出菜单,不同于AlertDialog对话框,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等
下面是运行程序截图:




程序代码:
布局文件:main.xml
<div class="cnblogs_code" style="background-color: #f5f5f5; width: 558px; height: 726px; border: #cccccc 1px solid; padding: 5px;"><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/layout">        <TextView android:id="@+id/text_view"        android:layout_width="fill_parent"        android:layout_height="wrap_content"        android:gravity="center"        android:text="@string/hello"        android:textSize="22dp"/>        <Button android:id="@+id/button_test1"        android:layout_width="fill_parent"        android:layout_height="wrap_content"        android:text="以自己为Anchor,不偏移"/>    <Button android:id="@+id/button_test2"        android:layout_width="fill_parent"        android:layout_height="wrap_content"        android:text="以自己为Anchor,正下方"/>        <Button android:id="@+id/button_test3"        android:layout_width="fill_parent"        android:layout_height="wrap_content"        android:text="以屏幕中心为参照,不偏移(正中间)"/>        <Button android:id="@+id/button_test4"        android:layout_width="fill_parent"        android:layout_height="wrap_content"        android:text="以屏幕下方为参照,下方中间"/></LinearLayout>
您需要登录后才可以回帖 登录 | 立即注册 新浪微博账号登陆

本版积分规则

快速回复 返回顶部 返回列表