PopupWindow不同方向彈出

之前寫過五分鐘教你學會PopupWindow
有人問要設置從頂部彈出的,現(xiàn)在歸納從不同方向彈出的PopupWindow
效果:

left.gif

先看部分關鍵地方

/**
     * 初始化PopupWindow
     * @param type
     */
    protected void initPopupWindow(int type) {
        View popupWindowView = getLayoutInflater().inflate(R.layout.popupwindow, null);
        ColorDrawable dw = new ColorDrawable(0xffffffff);
        if (Direction.BOTTOM.ordinal() == type) {
            popupWindow = new PopupWindow(popupWindowView, LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT, true);
            popupWindow.setAnimationStyle(R.style.BottomFade);
            popupWindow.setBackgroundDrawable(dw);
            popupWindow.showAtLocation(btnOpen, Gravity.BOTTOM | Gravity.CENTER_HORIZONTAL, 0, 0);
        } else if (Direction.TOP.ordinal() == type) {
            popupWindow = new PopupWindow(popupWindowView, LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT, true);
            popupWindow.setAnimationStyle(R.style.TopFade);
            popupWindow.setBackgroundDrawable(dw);
            popupWindow.showAtLocation(btnOpen, Gravity.TOP | Gravity.CENTER_HORIZONTAL, 0, 0);
        } else if (Direction.LEFT.ordinal() == type) {
            popupWindow = new PopupWindow(popupWindowView, LayoutParams.WRAP_CONTENT, LayoutParams.MATCH_PARENT, true);
            popupWindow.setAnimationStyle(R.style.LeftFade);
            popupWindow.setBackgroundDrawable(dw);
            popupWindow.showAtLocation(btnOpen, Gravity.LEFT, 0, 500);
        } else {
            popupWindow = new PopupWindow(popupWindowView, LayoutParams.WRAP_CONTENT, LayoutParams.MATCH_PARENT, true);
            popupWindow.setAnimationStyle(R.style.RightFade);
            popupWindow.setBackgroundDrawable(dw);
            popupWindow.showAtLocation(btnOpen, Gravity.RIGHT, 0, 500);
        }
        backgroundAlpha(0.5f);
        popupWindow.setOnDismissListener(new popupDismissListener());
        popupWindowView.setOnTouchListener(new OnTouchListener() {
            @Override
            public boolean onTouch(View v, MotionEvent event) {
                return false;
            }
        });
        TextView tv_close = (TextView) popupWindowView.findViewById(R.id.tv_close);
        tv_close.setOnClickListener(new OnClickListener() {
            @Override
            public void onClick(View v) {
                popupWindow.dismiss();
            }
        });
    }
 /**
     * 設置透明度
     * @param bgAlpha
     */
    public void backgroundAlpha(float bgAlpha) {
        WindowManager.LayoutParams lp = getWindow().getAttributes();
        lp.alpha = bgAlpha;
        getWindow().setAttributes(lp);
    }
    /**
     * 彈出方向
     */
    public enum Direction {
        LEFT,
        RIGHT,
        TOP,
        BOTTOM
    }

不同方向的彈出動畫#

頂部彈出和消失
頂部彈出 in_toptobottom.xml

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

    <translate
        android:duration="500"
        android:fromYDelta="-100%"
        android:toYDelta="0" />

</set>

頂部彈出消失 out_bottomtotop.xml

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

    <translate
        android:duration="500"
        android:fromYDelta="0"
        android:toYDelta="-100%" />
  
</set>

其他方向彈出的主要是改變 duration fromYDelta toYDelta的值
Style

 <style name="LeftFade">
        <item name="android:windowEnterAnimation">@anim/in_lefttoright</item>
        <item name="android:windowExitAnimation">@anim/out_righttoleft</item>
    </style>

    <style name="RightFade">
        <item name="android:windowEnterAnimation">@anim/in_righttoleft</item>
        <item name="android:windowExitAnimation">@anim/out_lefttoright</item>
    </style>

    <style name="BottomFade">
        <item name="android:windowEnterAnimation">@anim/in_bottomtotop</item>
        <item name="android:windowExitAnimation">@anim/out_toptobottom</item>
    </style>
    <style name="TopFade">
        <item name="android:windowEnterAnimation">@anim/in_toptobottom</item>
        <item name="android:windowExitAnimation">@anim/out_bottomtotop</item>
    </style>

完整的Activity

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.RadioGroup;
import android.widget.TextView;

/**
 * 微信公眾號:aikaifa
 * 開發(fā)小助手捅伤,長期不斷推送優(yōu)選博文喻粹、優(yōu)秀開源項目味滞。
 * 勵志雞湯源源不斷隔披,專治孤獨者,找回自我饿这。
 * qq交流群:154950206
 */
public class MainActivity extends Activity implements View.OnClickListener {
    private Context context = null;
    private PopupWindow popupWindow;
    private Button btnOpen;
    private int type = 0;
    private RadioGroup rg_type;

    /**
     * 彈出方向
     */
    public enum Direction {
        LEFT,
        RIGHT,
        TOP,
        BOTTOM
    }

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        context = this;
        setContentView(R.layout.activity_main);
        btnOpen = (Button) findViewById(R.id.btn_open);
        btnOpen.setOnClickListener(this);
        rg_type = (RadioGroup) findViewById(R.id.rg_type);
        rg_type.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {
            @Override
            public void onCheckedChanged(RadioGroup group, int checkedId) {
                switch (checkedId) {
                    case R.id.left:
                        type = Direction.LEFT.ordinal();
                        break;
                    case R.id.right:
                        type = Direction.RIGHT.ordinal();
                        break;
                    case R.id.bottom:
                        type = Direction.BOTTOM.ordinal();
                        break;
                    case R.id.top:
                        type = Direction.TOP.ordinal();
                        break;
                }
            }
        });
    }

    @Override
    public void onClick(View view) {
        switch (view.getId()) {
            case R.id.btn_open: {
                initPopupWindow(type);
                break;
            }
        }
    }

    class popupDismissListener implements PopupWindow.OnDismissListener {
        @Override
        public void onDismiss() {
            backgroundAlpha(1f);
        }
    }

    /**
     * 初始化PopupWindow
     * @param type
     */
    protected void initPopupWindow(int type) {
        View popupWindowView = getLayoutInflater().inflate(R.layout.popupwindow, null);
        ColorDrawable dw = new ColorDrawable(0xffffffff);
        if (Direction.BOTTOM.ordinal() == type) {
            popupWindow = new PopupWindow(popupWindowView, LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT, true);
            popupWindow.setAnimationStyle(R.style.BottomFade);
            popupWindow.setBackgroundDrawable(dw);
            popupWindow.showAtLocation(btnOpen, Gravity.BOTTOM | Gravity.CENTER_HORIZONTAL, 0, 0);
        } else if (Direction.TOP.ordinal() == type) {
            popupWindow = new PopupWindow(popupWindowView, LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT, true);
            popupWindow.setAnimationStyle(R.style.TopFade);
            popupWindow.setBackgroundDrawable(dw);
            popupWindow.showAtLocation(btnOpen, Gravity.TOP | Gravity.CENTER_HORIZONTAL, 0, 0);
        } else if (Direction.LEFT.ordinal() == type) {
            popupWindow = new PopupWindow(popupWindowView, LayoutParams.WRAP_CONTENT, LayoutParams.MATCH_PARENT, true);
            popupWindow.setAnimationStyle(R.style.LeftFade);
            popupWindow.setBackgroundDrawable(dw);
            popupWindow.showAtLocation(btnOpen, Gravity.LEFT, 0, 500);
        } else {
            popupWindow = new PopupWindow(popupWindowView, LayoutParams.WRAP_CONTENT, LayoutParams.MATCH_PARENT, true);
            popupWindow.setAnimationStyle(R.style.RightFade);
            popupWindow.setBackgroundDrawable(dw);
            popupWindow.showAtLocation(btnOpen, Gravity.RIGHT, 0, 500);
        }
        backgroundAlpha(0.5f);
        popupWindow.setOnDismissListener(new popupDismissListener());
        popupWindowView.setOnTouchListener(new OnTouchListener() {
            @Override
            public boolean onTouch(View v, MotionEvent event) {
                return false;
            }
        });
        TextView tv_close = (TextView) popupWindowView.findViewById(R.id.tv_close);
        tv_close.setOnClickListener(new OnClickListener() {
            @Override
            public void onClick(View v) {
                popupWindow.dismiss();
            }
        });
    }

    /**
     * 設置透明度
     * @param bgAlpha
     */
    public void backgroundAlpha(float bgAlpha) {
        WindowManager.LayoutParams lp = getWindow().getAttributes();
        lp.alpha = bgAlpha;
        getWindow().setAttributes(lp);
    }

}

activity_main.xml布局

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:gravity="center"
    android:background="#eeeeee"
    android:padding="10dp"
    android:orientation="vertical">

    <RadioGroup
        android:id="@+id/rg_type"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="horizontal">

        <RadioButton
            android:id="@+id/left"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="左側(cè)"
            android:checked="true"/>

        <RadioButton
            android:id="@+id/right"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="右側(cè)" />

        <RadioButton
            android:id="@+id/bottom"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="底部" />

        <RadioButton
            android:id="@+id/top"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="頂部" />
    </RadioGroup>

    <Button
        android:id="@+id/btn_open"
        style="@style/btn_style"
        android:text="彈出PopupWindow" />
</LinearLayout>

----END---

轉(zhuǎn)載請與本人聯(lián)系 如果覺得喜歡或者對你有幫助菩颖,請點個贊吧~

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末样漆,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子晦闰,更是在濱河造成了極大的恐慌放祟,老刑警劉巖鳍怨,帶你破解...
    沈念sama閱讀 212,816評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異跪妥,居然都是意外死亡京景,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,729評論 3 385
  • 文/潘曉璐 我一進店門骗奖,熙熙樓的掌柜王于貴愁眉苦臉地迎上來确徙,“玉大人,你說我怎么就攤上這事执桌”苫剩” “怎么了?”我有些...
    開封第一講書人閱讀 158,300評論 0 348
  • 文/不壞的土叔 我叫張陵仰挣,是天一觀的道長伴逸。 經(jīng)常有香客問我,道長膘壶,這世上最難降的妖魔是什么错蝴? 我笑而不...
    開封第一講書人閱讀 56,780評論 1 285
  • 正文 為了忘掉前任,我火速辦了婚禮颓芭,結(jié)果婚禮上顷锰,老公的妹妹穿的比我還像新娘。我一直安慰自己亡问,他們只是感情好官紫,可當我...
    茶點故事閱讀 65,890評論 6 385
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著州藕,像睡著了一般束世。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上床玻,一...
    開封第一講書人閱讀 50,084評論 1 291
  • 那天毁涉,我揣著相機與錄音,去河邊找鬼锈死。 笑死贫堰,一個胖子當著我的面吹牛,可吹牛的內(nèi)容都是我干的馅精。 我是一名探鬼主播严嗜,決...
    沈念sama閱讀 39,151評論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼洲敢!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起茄蚯,我...
    開封第一講書人閱讀 37,912評論 0 268
  • 序言:老撾萬榮一對情侶失蹤压彭,失蹤者是張志新(化名)和其女友劉穎睦优,沒想到半個月后,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體壮不,經(jīng)...
    沈念sama閱讀 44,355評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡汗盘,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,666評論 2 327
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了询一。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片隐孽。...
    茶點故事閱讀 38,809評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖健蕊,靈堂內(nèi)的尸體忽然破棺而出菱阵,到底是詐尸還是另有隱情,我是刑警寧澤缩功,帶...
    沈念sama閱讀 34,504評論 4 334
  • 正文 年R本政府宣布晴及,位于F島的核電站,受9級特大地震影響嫡锌,放射性物質(zhì)發(fā)生泄漏虑稼。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 40,150評論 3 317
  • 文/蒙蒙 一势木、第九天 我趴在偏房一處隱蔽的房頂上張望蛛倦。 院中可真熱鬧,春花似錦啦桌、人聲如沸胰蝠。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,882評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽茸塞。三九已至,卻和暖如春查剖,著一層夾襖步出監(jiān)牢的瞬間钾虐,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 32,121評論 1 267
  • 我被黑心中介騙來泰國打工笋庄, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留效扫,地道東北人。 一個月前我還...
    沈念sama閱讀 46,628評論 2 362
  • 正文 我出身青樓直砂,卻偏偏與公主長得像菌仁,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子静暂,可洞房花燭夜當晚...
    茶點故事閱讀 43,724評論 2 351

推薦閱讀更多精彩內(nèi)容