PopupWindow实现右侧、左侧和底部弹出菜单

先上图,4张:

图1


图2
图3
图4

项目代码:http://download.csdn.net/download/jianfengwen/9124745 (需要2个分)


贴代码:

MainActivity类:

package com.example.popupleftmenu;

import android.app.Activity;

import android.content.Context;

import android.graphics.drawable.ColorDrawable;

import android.os.Bundle;

import android.view.Gravity;

import android.view.MotionEvent;

import android.view.View;

import android.view.View.OnClickListener;

import android.view.View.OnTouchListener;

import android.view.ViewGroup.LayoutParams;

import android.view.WindowManager;

import android.widget.Button;

import android.widget.PopupWindow;

import android.widget.Toast;

public  class  MainActivity  extends  Activity {

private Context context =null;

private PopupWindow  popupWindow;

private int from =0;

@Override

protected void onCreate(Bundle  savedInstanceState) {

super.onCreate(savedInstanceState);

context =this;

setContentView(R.layout.activity_main);

Button popLeftBtn = (Button)findViewById(R.id.pop_left_btn);

Button popRightBtn = (Button)findViewById(R.id.pop_right_btn);

Button popBottomBtn = (Button)findViewById(R.id.pop_bottom_btn);

popLeftBtn.setOnClickListener(popClick);

popRightBtn.setOnClickListener(popClick);

popBottomBtn.setOnClickListener(popClick);

}

OnClickListener popClick =new OnClickListener() {

@Override

public  void  onClick(View  v) {

switch(v.getId()){

case  R.id.pop_left_btn:

{

from = Location.LEFT.ordinal();

break;

}

case  R.id.pop_right_btn:

{

from = Location.RIGHT.ordinal();

break;

}

case  R.id.pop_bottom_btn:

{

from = Location.BOTTOM.ordinal();

break;

}

}

//调用此方法,menu不会置顶

//popupWindow.showAsDropDown(v);

initPopupWindow();

}

};

/**

* 添加新笔记时弹出的popWin关闭的事件,主要是为了将背景透明度改回来

*

*/

class popupDismissListener implements PopupWindow.OnDismissListener{

@Override

public void onDismiss() {

backgroundAlpha(1f);

}

}

protected void initPopupWindow() {

View popupWindowView = getLayoutInflater().inflate(R.layout.pop,null);

//内容,高度,宽度

if(Location.BOTTOM.ordinal() == from){

popupWindow =new PopupWindow(popupWindowView, LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT,true);

}else{

popupWindow =new PopupWindow(popupWindowView, LayoutParams.WRAP_CONTENT, LayoutParams.FILL_PARENT,true);

}

//动画效果

if(Location.LEFT.ordinal() == from){

popupWindow.setAnimationStyle(R.style.AnimationLeftFade);

} else if(Location.RIGHT.ordinal() == from){

popupWindow.setAnimationStyle(R.style.AnimationRightFade);

} else if(Location.BOTTOM.ordinal() == from){

popupWindow.setAnimationStyle(R.style.AnimationBottomFade);

}

//菜单背景色

ColorDrawable dw =new ColorDrawable(0xffffffff);

popupWindow.setBackgroundDrawable(dw);

//宽度

//popupWindow.setWidth(LayoutParams.WRAP_CONTENT);

//高度

//popupWindow.setHeight(LayoutParams.FILL_PARENT);

//显示位置

if(Location.LEFT.ordinal() == from){

popupWindow.showAtLocation(getLayoutInflater().inflate(R.layout.activity_main,null), Gravity.LEFT,0,500);

}elseif(Location.RIGHT.ordinal() == from){

popupWindow.showAtLocation(getLayoutInflater().inflate(R.layout.activity_main,null), Gravity.RIGHT,0,500);

}elseif(Location.BOTTOM.ordinal() == from){

popupWindow.showAtLocation(getLayoutInflater().inflate(R.layout.activity_main,null), Gravity.BOTTOM|Gravity.CENTER_HORIZONTAL,0,0);

}

//设置背景半透明

backgroundAlpha(0.5f);

//关闭事件

popupWindow.setOnDismissListener(new popupDismissListener());

popupWindowView.setOnTouchListener(new OnTouchListener() {

@Override

public boolean onTouch(View v, MotionEvent event) {

/*if( popupWindow!=null && popupWindow.isShowing()){

popupWindow.dismiss();

popupWindow=null;

}*/

// 这里如果返回true的话,touch事件将被拦截

// 拦截后 PopupWindow的onTouchEvent不被调用,这样点击外部区域无法dismiss

return false;

}

});

Button open = (Button)popupWindowView.findViewById(R.id.open);

Button save = (Button)popupWindowView.findViewById(R.id.save);

Button close = (Button)popupWindowView.findViewById(R.id.close);

open.setOnClickListener(new OnClickListener() {

@Override

public void onClick(View v) {

Toast.makeText(context,"Open", Toast.LENGTH_LONG).show();

popupWindow.dismiss();

}

});

save.setOnClickListener(newOnClickListener() {

@Override

public void onClick(View  v) {

Toast.makeText(context,"Open", Toast.LENGTH_LONG).show();

popupWindow.dismiss();

}

});

close.setOnClickListener(new OnClickListener() {

@Override

public void onClick(View v) {

Toast.makeText(context,"Open", Toast.LENGTH_LONG).show();

popupWindow.dismiss();

}

});

}

/**

* 设置添加屏幕的背景透明度

* @param bgAlpha

*/

publicvoid backgroundAlpha(float bgAlpha)

{

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

lp.alpha = bgAlpha;//0.0-1.0

getWindow().setAttributes(lp);

}

/**

* 菜单弹出方向

*

*/

public enum Location {

LEFT,

RIGHT,

TOP,

BOTTOM;

}

}

两个布局文件:

1.activity_main.xml,就三个Button

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  

    xmlns:tools="http://schemas.android.com/tools"  

    android:layout_width="fill_parent"  

    android:layout_height="fill_parent"  

    android:orientation="vertical">  

    <Button   

        android:id="@+id/pop_left_btn"  

        android:layout_width="fill_parent"  

        android:layout_height="wrap_content"  

        android:text="@string/pop_left"/>  

    <Button   

        android:id="@+id/pop_right_btn"  

        android:layout_width="fill_parent"  

        android:layout_height="wrap_content"  

        android:text="@string/pop_right"/>  

    <Button   

        android:id="@+id/pop_bottom_btn"  

        android:layout_width="fill_parent"  

        android:layout_height="wrap_content"  

        android:text="@string/pop_bottom"/>  

</LinearLayout>  

2. pop.xml,也是三个Button,可以自己修改

<?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" >  

    <!-- <LinearLayout   

        android:layout_width="wrap_content"  

        android:layout_height="fill_parent"  

        android:orientation="vertical"  

        android:background="#ffffff"> -->  

        <Button android:id="@+id/open"  

            android:layout_width="fill_parent"  

            android:layout_height="wrap_content"  

            android:text="@string/open"/>  

        <Button android:id="@+id/save"  

            android:layout_width="fill_parent"  

            android:layout_height="wrap_content"  

            android:text="@string/save"/>  

        <Button android:id="@+id/close"  

            android:layout_width="fill_parent"  

            android:layout_height="wrap_content"  

            android:text="@string/close"/>  

   <!--  </LinearLayout> -->  

</LinearLayout>  


strings.xml

<string name="pop_left">弹出左侧菜单</string>  

<string name="pop_right">弹出右侧菜单</string>  

<string name="pop_bottom">弹出底部菜单</string>  

<string name="open">打开</string>   

<string name="save">保存</string>   

<string name="close">关闭</string>   

styles.xml

<style name="AnimationLeftFade">  

        <item name="android:windowEnterAnimation">@anim/in_lefttoright</item>  

        <item name="android:windowExitAnimation">@anim/out_righttoleft</item>  

 </style>  

<style name="AnimationRightFade">  

        <item name="android:windowEnterAnimation">@anim/in_righttoleft</item>  

        <item name="android:windowExitAnimation">@anim/out_lefttoright</item>  

</style>  

<style name="AnimationBottomFade">  

        <item name="android:windowEnterAnimation">@anim/in_bottomtotop</item>  

        <item name="android:windowExitAnimation">@anim/out_toptobottom</item>  

</style>  


左边弹出菜单动画文件:

in_lefttoright.xml:从左边入

<?xml version="1.0" encoding="utf-8"?>  

<set xmlns:android="http://schemas.android.com/apk/res/android">  

    <translate   

        android:fromXDelta="-100%"  

        android:toXDelta="0"  

        android:duration="500"/>  

</set>  

out_righttoleft.xml:从右边出

<?xml version="1.0" encoding="utf-8"?>  

<set xmlns:android="http://schemas.android.com/apk/res/android">  


    <translate

        android:fromXDelta="0"  

        android:toXDelta="-100%"  

        android:duration="500"/>  

</set>  

其他动画文件自己参考写,就是fromXDelta, fromYDelta, toXDelta和toYDelta使用

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 211,194评论 6 490
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,058评论 2 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 156,780评论 0 346
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,388评论 1 283
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,430评论 5 384
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,764评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,907评论 3 406
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,679评论 0 266
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,122评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,459评论 2 325
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,605评论 1 340
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,270评论 4 329
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,867评论 3 312
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,734评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,961评论 1 265
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,297评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,472评论 2 348

推荐阅读更多精彩内容