Android PopupWindow使用实例
程序员文章站
2022-06-10 18:52:05
示例效果如下:
mainactivity.xml
package sn.qdj.popupwindowdemo;
import android...
示例效果如下:
mainactivity.xml
package sn.qdj.popupwindowdemo; import android.support.v7.app.actionbaractivity; import android.os.bundle; import android.view.gravity; import android.view.view; import android.view.view.onclicklistener; import android.widget.button; import android.widget.popupwindow; /** * popupwindow使用 * @author qingdujun * */ public class mainactivity extends actionbaractivity { @override protected void oncreate(bundle savedinstancestate) { super.oncreate(savedinstancestate); setcontentview(r.layout.activity_main); /** * popup.xml 为弹出界面布局 */ view root = getlayoutinflater().inflate(r.layout.popup, null); /** * 弹出界面 * 宽度:400 * 高度:200 */ final popupwindow popup = new popupwindow(root, 400,200); button btn = (button)findviewbyid(r.id.btn); button close = (button)findviewbyid(r.id.close); btn.setonclicklistener(new onclicklistener() { @override public void onclick(view v) { // todo auto-generated method stub /** * 在指定位置弹出 * * 第一个参数指定popupwindow的锚点view,即依附在哪个view上。 * 第二个参数指定起始点为parent的右下角 * 第三个参数设置以btn的下方为原点,向左、上各偏移0像素。 */ popup.showatlocation(findviewbyid(r.id.btn), gravity.bottom, 0, 0); } }); close.setonclicklistener(new onclicklistener() { @override public void onclick(view v) { // todo auto-generated method stub /** * 关闭popupwindow */ popup.dismiss(); } }); } }
activity_main.xml
<relativelayout 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" > <button android:id="@+id/btn" android:layout_width="200dp" android:layout_height="wrap_content" android:layout_alignparenttop="true" android:text="弹出" /> <button android:id="@+id/close" android:layout_width="200dp" android:layout_height="wrap_content" android:layout_torightof="@id/btn" android:text="关闭" /> </relativelayout>
popup.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="match_parent" android:orientation="vertical" > <button android:id="@+id/btn1" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="相册" /> <button android:id="@+id/btn2" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="拍照" /> </linearlayout>
下一篇: 饭团营养价值在哪里?
推荐阅读
-
Python命令行参数解析模块optparse使用实例
-
php类中的$this,static,final,const,self这几个关键字使用方法_php实例
-
Android应用程序更新并下载实例
-
Android 仿京东侧滑筛选实例代码
-
php使用CURL伪造IP和来源实例详解_PHP
-
PHP的Yii框架中使用数据库的配置和SQL操作实例教程_PHP
-
php foreach()使用方式和扩展实例汇总
-
PHP使用Pthread实现的多线程操作实例_PHP
-
Android App中DrawerLayout抽屉效果的菜单编写实例,drawerlayout上下抽屉_PHP教程
-
Android 使用Retrofit下载文件并实现进度监听