Android自定义popupwindow实例代码

 更新时间:2016年11月25日 11:33:44   作者:森林森  
这篇文章主要为大家详细介绍了Android自定义popupwindow实例代码,popupwindow弹出菜单效果,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

先来看看效果图:

一、布局 

<?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="wrap_content"
  android:orientation="vertical"
  android:background="#ffffff"
  android:padding="20dp" >

  <TextView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:clickable="true"
    android:gravity="center"
    android:textColor="@android:color/holo_orange_dark"
    android:text="确定" />

  <TextView
    android:layout_marginTop="20dp"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginBottom="10dp"
    android:clickable="true"
    android:gravity="center"
    android:text="取消" />

</LinearLayout>

2、自定义MypopupWindow继承PopupWindow

public class MyPopupWindow extends PopupWindow {  

3、重写构造方法与动画样式
在styles.xml自定义样式,动画

<style name="MyPopupWindow">

    <item name="android:windowEnterAnimation">@anim/pop_in</item>
    <item name="android:windowExitAnimation">@anim/pop_out</item>
  </style>

 pop_in

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">

  <!-- 平移
  <translate
     android:duration="5000"
     android:fromXDelta="100%"

     android:toXDelta="0"/>
     -->

  <scale
    android:fromXScale="0"
    android:fromYScale="0"
    android:pivotX="50%"
    android:pivotY="50%"
    android:toXScale="0.8"
    android:toYScale="0.5"
    android:duration="200"/>

  <!--
fromXScale
fromYScale
起始时X,Y座标,

pivotX
pivotY

动画起始位置,相对于屏幕的百分比,两个都为50%表示动画从屏幕中间开始

toXScale
toYScale
动画最终缩放的倍数, 1.0为正常大小,大于1.0放大

duration
动画持续时间


 -->

  <!--透明度-->
  <alpha
    android:duration="200"
    android:fromAlpha="0.0"

    android:toAlpha="1.0"/>


</set>

pop_out

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">

  <!-- <translate
    android:duration="5000"
    android:fromXDelta="0"

    android:toXDelta="100%"/>-->

  <scale
    android:fromXScale="0.8"
    android:fromYScale="0.5"
    android:pivotX="50%"
    android:pivotY="50%"
    android:toXScale="0"
    android:toYScale="0"
    android:duration="200"/>



  <alpha
    android:duration="200"
    android:fromAlpha="1.0"

    android:toAlpha="0.0"/>

</set>

4、重写构造方法并设置点击外部可以消失监听

 super(context);

    this.mContext=context;
    //打气筒
    mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);


    //打气

    mContentView = mInflater.inflate(R.layout.layout_dialog,null);

    //设置View
    setContentView(mContentView);


    //设置宽与高
    setWidth(WindowManager.LayoutParams.MATCH_PARENT);

    setHeight(WindowManager.LayoutParams.WRAP_CONTENT);


    /**
     * 设置进出动画
     */
    setAnimationStyle(R.style.MyPopupWindow);


    /**
     * 设置背景只有设置了这个才可以点击外边和BACK消失
     */
    setBackgroundDrawable(new ColorDrawable());


    /**
     * 设置可以获取集点
     */
    setFocusable(true);

    /**
     * 设置点击外边可以消失
     */
    setOutsideTouchable(true);

    /**
     *设置可以触摸
     */
    setTouchable(true);


    /**
     * 设置点击外部可以消失
     */

    setTouchInterceptor(new View.OnTouchListener() {
      @Override
      public boolean onTouch(View v, MotionEvent event) {

        /**
         * 判断是不是点击了外部
         */
        if(event.getAction()==MotionEvent.ACTION_OUTSIDE){
          return true;
        }
        //不是点击外部
        return false;
      }
    });

5、显示及设置窗口变暗与变亮

public void displayDialog(View view){

    MyPopupWindow myPopupWindow = new MyPopupWindow(this);

    myPopupWindow.showAsDropDown(mBtnDispaly,0,0);
    lightOff();


    /**
     * 消失时屏幕变亮
     */
    myPopupWindow.setOnDismissListener(new PopupWindow.OnDismissListener() {
      @Override
      public void onDismiss() {
        WindowManager.LayoutParams layoutParams = getWindow().getAttributes();

        layoutParams.alpha=1.0f;

        getWindow().setAttributes(layoutParams);
      }
    });
  }

  /**
   * 显示时屏幕变暗
   */
  private void lightOff() {

    WindowManager.LayoutParams layoutParams = getWindow().getAttributes();

    layoutParams.alpha=0.3f;

    getWindow().setAttributes(layoutParams);

  }

6、完整

package liu.basedemo.view;

import android.content.Context;
import android.graphics.drawable.ColorDrawable;
import android.view.LayoutInflater;
import android.view.MotionEvent;
import android.view.View;
import android.view.WindowManager;
import android.widget.PopupWindow;

import liu.basedemo.R;


/**
 * 学习PopupWindow
 * Created by 刘楠 on 2016/8/1 0001.17:42
 */
public class MyPopupWindow extends PopupWindow {

  Context mContext;
  private LayoutInflater mInflater;
  private View mContentView;


  public MyPopupWindow(Context context) {
    super(context);

    this.mContext=context;
    //打气筒
    mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);


    //打气

    mContentView = mInflater.inflate(R.layout.layout_dialog,null);

    //设置View
    setContentView(mContentView);


    //设置宽与高
    setWidth(WindowManager.LayoutParams.MATCH_PARENT);

    setHeight(WindowManager.LayoutParams.WRAP_CONTENT);


    /**
     * 设置进出动画
     */
    setAnimationStyle(R.style.MyPopupWindow);


    /**
     * 设置背景只有设置了这个才可以点击外边和BACK消失
     */
    setBackgroundDrawable(new ColorDrawable());


    /**
     * 设置可以获取集点
     */
    setFocusable(true);

    /**
     * 设置点击外边可以消失
     */
    setOutsideTouchable(true);

    /**
     *设置可以触摸
     */
    setTouchable(true);


    /**
     * 设置点击外部可以消失
     */

    setTouchInterceptor(new View.OnTouchListener() {
      @Override
      public boolean onTouch(View v, MotionEvent event) {

        /**
         * 判断是不是点击了外部
         */
        if(event.getAction()==MotionEvent.ACTION_OUTSIDE){
          return true;
        }
        //不是点击外部
        return false;
      }
    });


    /**
     * 初始化View与监听器
     */
    initView();

    initListener();
  }




  private void initView() {

  }

  private void initListener() {

  }


}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

相关文章

  • Android Https证书过期的两种解决方案

    Android Https证书过期的两种解决方案

    应该有很多小伙伴遇到这样一个问题,在线上已发布的app里,关于https的cer证书过期,从而导致app所有网络请求失效无法使用,这篇文章主要介绍了Android Https证书过期的解决方案,需要的朋友可以参考下
    2022-12-12
  • Android UI控件之ListView实现圆角效果

    Android UI控件之ListView实现圆角效果

    这篇文章主要为大家详细介绍了Android UI控件之ListView实现圆角效果,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2017-12-12
  • Android中获取设备的各种信息总结

    Android中获取设备的各种信息总结

    相信各位Android的开发者们都知道,现在几乎所有的app都需要获得设备信息,那么下面这篇文章就来详细说说获取设备信息的方法。
    2016-09-09
  • Android中RecyclerView的item宽高问题详解

    Android中RecyclerView的item宽高问题详解

    RecyclerView出现已经有一段时间了,相信大家肯定不陌生了,下面这篇文章主要给大家介绍了关于Android中RecyclerView的item宽高问题的相关资料,文中通过示例代码介绍的非常详细,需要的朋友可以参考借鉴,下面来一起看看吧。
    2017-08-08
  • OpenGL Shader实现阴影遮罩效果

    OpenGL Shader实现阴影遮罩效果

    这篇文章主要介绍了如何利用OpenGL Shader实现阴影遮罩效果,文中的示例代码简洁易懂,对我们学习OpenGL有一定帮助,需要的可以参考一下
    2022-02-02
  • Android深入分析属性动画源码

    Android深入分析属性动画源码

    这篇文章主要给大家介绍了关于Android动画系列教程之属性动画的相关资料,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2022-08-08
  • Android PhotoView使用步骤实例详解

    Android PhotoView使用步骤实例详解

    这篇文章主要介绍了Android PhotoView使用步骤实例详解的相关资料,需要的朋友可以参考下
    2017-06-06
  • Android中定时执行任务的3种实现方法(推荐)

    Android中定时执行任务的3种实现方法(推荐)

    下面小编就为大家带来一篇Android中定时执行任务的3种实现方法(推荐)。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2016-11-11
  • Android Gradle模块依赖替换使用技巧

    Android Gradle模块依赖替换使用技巧

    这篇文章主要为大家介绍了Android Gradle模块依赖替换使用技巧,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪
    2022-06-06
  • android实现添加耳机状态图标的方法

    android实现添加耳机状态图标的方法

    这篇文章主要介绍了android实现添加耳机状态图标的方法,较为详细的分析了Android实现添加耳机图标的原理与相关技巧,具有一定参考借鉴价值,需要的朋友可以参考下
    2015-10-10

最新评论