`

Android入门第十篇之PopupWindow

阅读更多

介绍过AlertDialog之后,接下来就介绍一下PopupWindow这种对话框。PopupWindow是阻塞对话框,只有在外部线程 或者 PopupWindow本身做退出操作才行。PopupWindow完全依赖Layout做外观,在常见的开发中,PopupWindow应该会与AlertDialog常混用。

       贴出本例中运行的结果图:

main.xml的源码如下:

 

view plaincopy to clipboardprint?
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:orientation="vertical"  
  4.     android:layout_width="fill_parent"  
  5.     android:layout_height="fill_parent"  
  6.     >  
  7. <Button android:id="@+id/Button01" android:layout_height="wrap_content" android:layout_width="fill_parent" android:text="PopupWindow演示"></Button>  
  8. </LinearLayout>  

 

 

 

 

下图是PopupWindow弹出的截图,这里的PopupWindow是个登录框,点“确定”则自动填写,点“取消”则关闭PopupWindow。

 

popupwindow.xml的源码:

 

view plaincopy to clipboardprint?
  1. <?xml version="1.0" encoding="utf-8"?>  
  2.   
  3. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  4.     android:layout_width="fill_parent" android:layout_height="wrap_content"  
  5.     android:orientation="vertical" android:background="#000000">  
  6.   
  7.     <TextView android:id="@+id/username_view"  
  8.         android:layout_height="wrap_content"  
  9.         android:layout_marginLeft="20dip"  
  10.         android:layout_marginRight="20dip" android:text="用户名"  
  11.         android:textAppearance="?android:attr/textAppearanceMedium" android:layout_width="fill_parent"/>  
  12.   
  13.     <EditText android:id="@+id/username_edit"  
  14.         android:layout_height="wrap_content"  
  15.         android:layout_width="fill_parent" android:layout_marginLeft="20dip"  
  16.         android:layout_marginRight="20dip" android:capitalize="none"  
  17.         android:textAppearance="?android:attr/textAppearanceMedium" />  
  18.   
  19.     <TextView android:id="@+id/password_view"  
  20.         android:layout_height="wrap_content"  
  21.         android:layout_marginLeft="20dip"  
  22.         android:layout_marginRight="20dip" android:text="密码"  
  23.         android:textAppearance="?android:attr/textAppearanceMedium" android:layout_width="fill_parent"/>  
  24.   
  25.     <EditText android:id="@+id/password_edit"  
  26.         android:layout_height="wrap_content"  
  27.         android:layout_width="fill_parent" android:layout_marginLeft="20dip"  
  28.         android:layout_marginRight="20dip" android:capitalize="none"  
  29.         android:password="true"  
  30.         android:textAppearance="?android:attr/textAppearanceMedium" />  
  31.   
  32. <LinearLayout android:id="@+id/LinearLayout01" android:layout_height="wrap_content" android:layout_width="fill_parent" android:gravity="center"><Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/BtnOK" android:layout_weight="100" android:text="确定"></Button><Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_weight="100" android:text="取消" android:id="@+id/BtnCancel"></Button
分享到:
评论

相关推荐

    Android入门第十篇之PopupWindow.docx

    PopupWindow在Android开发中是一种非常实用的组件,它允许开发者创建弹出式窗口,这些窗口可以显示在其他视图之上,通常用于实现类似下拉菜单、提示框或自定义对话框的效果。PopupWindow并不是一个真正的对话框,它...

    Android入门第十篇之PopupWindow.doc

    与AlertDialog不同,PopupWindow并非对话框,而是直接在当前Activity之上显示一个视图,它不具有内置的确认或取消按钮,因此它的外观和行为完全由开发者控制。 首先,PopupWindow的核心特性是它的非阻塞性质。当...

    Android从屏幕底部弹出PopupWindow

    在Android开发中,PopupWindow是一种常用的UI组件,它可以在屏幕上的任意位置显示一个浮动窗口,通常用于实现类似下拉菜单、提示框等效果。在这个场景中,我们要实现的是从屏幕底部弹出的PopupWindow,并带有滑动...

    Android弹窗实现之Popupwindow及DialogFragment

    Android弹窗实现之Popupwindow及DialogFragment。创建并实现PopupWindow布局 实现PopupWindow对象实例 设置PopupWindow背景、动画属性、控件实现及事件监听 显示PopupWindow及位置设定。

    android popupwindow 底部灰色背景

    在Android开发中,PopupWindow是一个非常实用的组件,它允许我们创建浮动窗口,可以在Activity的任何位置显示。在实现特定的UI设计时,比如底部弹出菜单或对话框,我们可能会遇到需要添加底部灰色背景的需求。这个...

    android自定义通用PopupWindow

    在Android开发中,`PopupWindow` 是一个非常实用的组件,它允许我们创建弹出式窗口,用于显示一些临时信息或者交互操作。本教程将详细讲解如何封装一个通用的`PopupWindow`,以便在项目中复用,降低代码冗余,提高...

    Android自定义下拉框(PopupWindow实现)

    本篇将详细讲解如何使用PopupWindow实现一个定制化的下拉框。 首先,理解PopupWindow的基本概念。PopupWindow是Android提供的一种轻量级窗口,可以用来弹出一个浮动视图。它通常用于创建快捷菜单、下拉列表或者其他...

    Android之用PopupWindow实现弹出listview形式的菜单

    在Android开发中,`PopupWindow`是一个非常实用的组件,它可以用来实现各种形式的弹出窗口,如下拉菜单、提示框等。本教程将详细讲解如何使用`PopupWindow`来创建一个以`ListView`形式展示的菜单。首先,我们需要...

    Android项目实现半透明的popupwindow.rar

    在Android开发中,PopupWindow是一个非常实用的组件,它能够以弹出窗口的形式展示内容,为用户提供临时交互界面。在本项目"Android项目实现半透明的popupwindow.rar"中,开发者将探讨如何创建一个具有半透明效果的...

    android 之popupWindow的使用

    在Android开发中,PopupWindow是一个非常实用的组件,它能够创建一种类似对话框的效果,但比Dialog更加灵活,可以自定义显示的内容和位置。本文将详细介绍如何在Android应用中使用PopupWindow,包括其基本概念、创建...

    popupwindow实现按钮下方阴影

    在Android开发中,PopupWindow是一种常用的轻量级弹窗组件,用于在屏幕任意位置显示一个浮层视图。本文将详细讲解如何实现标题所描述的功能:“popupwindow弹窗实现点击按钮,下方弹出popwindow,并且只是按钮下方有...

    安卓Android源码——Android之用PopupWindow实现弹出菜单.zip

    这个压缩包“安卓Android源码——Android之用PopupWindow实现弹出菜单.zip”显然是为了演示如何使用`PopupWindow`来构建弹出菜单。现在,我们将深入探讨`PopupWindow`的使用及其背后的原理。 `PopupWindow` 是 ...

    Android PopupWindow使用

    PopupWindow在Android开发中是一个非常实用的组件,它允许开发者创建弹出式窗口,用于显示临时信息或提供交互式操作。在微信等社交应用中,PopupWindow常用于下拉菜单、快捷操作、提示信息等场景。本文将详细介绍...

    Android TV 开发有关PopupWindow的KeyListener

    PopupWindow是Android提供的一个类,用于在当前视图之上显示一个浮动窗口。这个窗口可以包含任何View,比如一个自定义布局,一个ListView,甚至只是一个简单的TextView。通过设置PopupWindow的位置、大小和背景,...

    Android下打造通用便捷的PopupWindow弹窗库

    在Android开发中,PopupWindow是一个常用的组件,它允许开发者创建浮动、可自定义的视图,通常用于实现下拉菜单、提示信息等效果。本文将深入探讨如何在Android环境中构建一个通用且便捷的PopupWindow库,提升应用的...

    Android 仿微信右上角popupwindow.rar

    在Android开发中,微信右上角的popupwindow是一种常见的交互设计,它通常用于展示下拉菜单、快捷操作等。这个项目“Android 仿微信右上角popupwindow.rar”旨在实现与微信类似的popupwindow效果,解决在实际开发中...

    Android从底部弹出的popupwindow效果

    `PopupWindow`是Android提供的一个类,它可以在当前Activity的视图之上显示一个浮动窗口。这个窗口可以包含任意的View,并且可以自定义其大小、位置以及是否响应触摸事件。在这个场景中,我们需要创建一个`...

    Android用PopupWindow实现弹出listview形式菜单

    在Android开发中,有时我们需要创建一个可自定义的弹出菜单,这通常通过使用`PopupWindow`类来实现。`PopupWindow`是Android系统提供的一个轻量级窗口,它可以显示在屏幕上的任意位置,用于创建浮动、弹出式的UI组件...

    Android PopupWindow与Activity之间的数据传递.zip

    在Android开发中,PopupWindow和Activity是两个非常重要的组件。PopupWindow通常用于创建浮动窗口,如下拉菜单、提示框等,而Activity则是应用程序的基本单元,承载着用户界面和业务逻辑。两者之间的数据传递是实现...

    PopupWindow之显示顶层对话框代码

    在Android应用设计中,PopupWindow可以为用户提供直观、便捷的交互方式,比如在主界面之上弹出一个小窗口进行操作。 在"PopupWindow之显示顶层对话框代码"中,我们关注的核心是如何将PopupWindow设置为屏幕的顶层...

Global site tag (gtag.js) - Google Analytics