`

2011.07.05(2)——— android PopupWindow

阅读更多
2011.07.05(2)——— android PopupWindow

参考:http://www.eoeandroid.com/thread-48051-1-1.html
http://disanji.net/2010/12/08/android-popupwindow-2/
http://www.iteye.com/topic/604462

1、新写一个layout文件 作为popupwindow的布局文件
<?xml version="1.0" encoding="utf-8"?>  
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent"  
    android:orientation="vertical"
    android:gravity="center"
    android:background="#c0000000"> 
    <LinearLayout 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content"  
    android:orientation="vertical"
    android:gravity="center"
    android:background="@drawable/popupwindow"> 
    <LinearLayout 
    	android:layout_width="fill_parent"  
        android:layout_height="wrap_content"
        android:gravity="center"
        android:layout_margin="5dip">    
        <TextView 
	    	android:text="课程:"
	    	android:layout_width="wrap_content" 
	        android:layout_height="wrap_content"
	    /> 
	    <EditText 
	    	android:id="@+id/popupwindow_class"  
	        android:layout_width="200dip" 
	        android:layout_height="wrap_content"
	        />
    </LinearLayout>
    <LinearLayout 
    	android:layout_width="fill_parent"  
        android:layout_height="wrap_content" 
        android:gravity="center">  
        <Button 
        	android:text="添加" 
        	android:id="@+id/popupwindow_add"  
            android:layout_width="wrap_content" 
            android:layout_height="wrap_content">
       	</Button>  
        <Button 
        	android:text="取消" 
        	android:id="@+id/prpupwindow_cancel"  
            android:layout_width="wrap_content" 
            android:layout_height="wrap_content">
      	</Button>  
    </LinearLayout>  
    </LinearLayout>
</LinearLayout> 


2、布局文件当中 android:background="@drawable/popupwindow" 的边框圆角背景

<?xml version="1.0" encoding="utf-8"?> 
<shape xmlns:android="http://schemas.android.com/apk/res/android"
        android:shape="rectangle">
        <gradient 
	        android:startColor="#c0000000" 
	        android:endColor="#c0000000"
            android:angle="90" /><!--背景颜色渐变 -->
        <stroke 
	        android:dashWidth="2dp" 
	        android:dashGap="2dp"
            android:width="2dp" 
            android:color="#FF00ff00"></stroke>
        <!--描边 -->
        <corners 
        	android:bottomRightRadius="5dp"
            android:bottomLeftRadius="5dp" 
            android:topLeftRadius="5dp"
            android:topRightRadius="5dp" /><!--设置圆角-->
</shape>


3、显示popupwindow时的动态效果
res/anim/popuwindow.xml

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
    <scale android:interpolator="@android:anim/accelerate_decelerate_interpolator"
        android:fromXScale="0.0" 
        android:toXScale="1.0" 
        android:fromYScale="0.0"
        android:toYScale="1.0" 
        android:pivotX="50%" 
        android:pivotY="50%"
        android:fillAfter="true" 
        android:duration="3000" />
	 <alpha 
        android:fromAlpha="0.0" 
        android:toAlpha="1.0" 
        android:duration="3000" />
</set>


4、代码
/**
     * 添加课程的popupwindow
     * @param v
     */
    private void initPopupWindow(View v){
        final View view = this.getLayoutInflater().inflate(R.layout.popupwindow, null);
        popupWindow = new PopupWindow(view, LayoutParams.FILL_PARENT,
                LayoutParams.FILL_PARENT, true);
        Button btnOK=(Button)view.findViewById(R.id.popupwindow_add);
        btnOK.setOnClickListener(new OnClickListener(){
            public void onClick(View v) {
                EditText et=(EditText)view.findViewById(R.id.popupwindow_class);
                。。。。。。//一些处理
        });
 
      //Cancel按钮及其处理事件
        Button btnCancel=(Button)view.findViewById(R.id.prpupwindow_cancel);
        btnCancel.setOnClickListener(new OnClickListener(){
            public void onClick(View v) {
                popupWindow.dismiss();//关闭
            }
        });
        popupWindow.setBackgroundDrawable(new BitmapDrawable());
        popupWindow.showAtLocation(v, Gravity.CENTER, 0, 0);
        popupWindow.setAnimationStyle(R.anim.popupwindow);
        
    }

分享到:
评论

相关推荐

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

    popupWindow.showAsDropDown(anchorView, xOffset, yOffset); ``` `anchorView`是定位参考视图,`xOffset`和`yOffset`是`PopupWindow`与参考视图左下角的偏移量。 在实现弹出菜单时,通常会创建一个包含多个菜单项...

    安卓Android源码——仿微信popupwindow.zip

    "安卓Android源码——仿微信popupwindow.zip" 这个标题表明了我们即将探讨的是一个关于Android平台的源代码项目,它的主要目的是实现类似微信应用中的PopupWindow功能。PopupWindow是Android系统中一个非常重要的UI...

    安卓Android源码——PopupWindow模仿UC底部Menu.zip

    popupWindow.setOnDismissListener(new PopupWindow.OnDismissListener() { @Override public void onDismiss() { // 关闭动画或者其他清理工作 } }); ``` 4. **添加菜单项点击事件**:给布局文件中的每个菜单...

    安卓Android源码——PopupWindow下拉列表.rar

    本资源“安卓Android源码——PopupWindow下拉列表.rar”显然提供了一些关于如何使用`PopupWindow`来创建下拉列表的实际示例代码。 `PopupWindow` 是 Android SDK 提供的一个类,它允许开发者在应用程序中创建可弹出...

    Android源码——PopupWindow实现弹出菜单.zip

    本资料包"Android源码——PopupWindow实现弹出菜单.zip"主要聚焦于如何利用`PopupWindow`来创建自定义的弹出菜单。下面将详细介绍`PopupWindow`的基本概念、工作原理以及实现弹出菜单的关键步骤。 `PopupWindow` 是...

    Android 简单封装一个精美、好用的菜单型PopupWindow

    popupWindow.setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT)); // 设置透明背景 ``` 4. **添加点击事件**:为菜单项添加点击事件,可以使用ListView的onItemClickListener或者RecyclerView的...

    安卓Android源码——PopupWindow模仿UC底部Menu.rar

    这个压缩包“安卓Android源码——PopupWindow模仿UC底部Menu.rar”显然是一个示例项目,它展示了如何利用`PopupWindow` 来创建一个与UC浏览器底部菜单类似的用户界面。下面我们将深入探讨`PopupWindow` 的工作原理...

    安卓Android源码——多级PopupWindow的小demo.zip

    安卓Android源码——多级PopupWindow的小demo.zip

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

    在本项目"Android项目实现半透明的popupwindow.rar"中,开发者将探讨如何创建一个具有半透明效果的PopupWindow,使得用户体验更加丰富且美观。 首先,我们了解PopupWindow的基本概念。PopupWindow是Android提供的一...

    安卓Android源码——实现半透明的popupwindow.zip

    popupWindow.setBackgroundDrawable(new ColorDrawable(0x88000000)); // 0x88是透明度,后面是颜色 popupWindow.showAtLocation(rootView, Gravity.BOTTOM, 0, 0); // rootiew是参照View ``` 在上面的代码中,我们...

    安卓Andriod源码——仿微信popupwindow.zip

    本资源"安卓Andriod源码——仿微信popupwindow.zip"显然是一个示例项目,其目的是模仿微信应用程序中的PopupWindow实现。通过学习和分析这个源码,开发者可以了解到如何创建一个与微信应用类似的交互式弹窗。 首先...

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

    本项目"安卓Android源码——用PopupWindow实现弹出菜单.zip"显然是一个演示如何使用`PopupWindow`来构建弹出菜单的实例。下面我们将深入探讨`PopupWindow`的关键知识点。 首先,`PopupWindow` 是 Android SDK 提供...

    Android弹窗PopupWindow.zip

    本资源"Android弹窗PopupWindow.zip"提供了实现`PopupWindow`的代码示例,帮助开发者深入理解和运用这一功能。 `PopupWindow`的基本使用: 1. **初始化PopupWindow**: 首先,你需要创建一个`PopupWindow`对象,传入...

    Android源码——实现半透明的popupwindow的源码.rar

    开发者可能通过设置PopupWindow的LayoutParams来进一步定制它的显示效果,如锚点(anchor view)、显示模式(如`_popupWindow.showAsDropDown(anchor)`或`popupWindow.showAtLocation(anchor, Gravity.LEFT, 0, 0)`...

    Android入门第十篇之PopupWindow.docx

    在提供的例子中,有两个XML布局文件,一个是`main.xml`,另一个是`popupwindow.xml`。`main.xml`包含一个按钮,当点击这个按钮时,将会弹出`popupwindow.xml`定义的PopupWindow。`popupwindow.xml`是一个简单的垂直...

    Android PopupWindow

    popupWindow.setOnDismissListener(new PopupWindow.OnDismissListener() { @Override public void onDismiss() { contentView.startAnimation(animationOut); } }); ``` 四、PopupWindow与软键盘的交互 当...

    安卓Android源码——实现半透明的popupwindow的源码.zip

    本资源"安卓Android源码——实现半透明的popupwindow的源码.zip"提供了如何创建一个半透明效果的PopupWindow的具体实现。通过分析这个源码,我们可以深入理解PopupWindow的工作原理及其透明度的设置方法。 首先,...

    安卓Android源码——仿微信标题栏右上角PopupWindow.zip

    安卓Android源码——仿微信标题栏右上角PopupWindow.zip

Global site tag (gtag.js) - Google Analytics