popupWindow设置显示和消失的动画 add:如何点击背景或返回键让popuwindow消失

首先定义显示效果的动画文件:
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">  
    <translate  
        android:fromXDelta="0"  
        android:toXDelta="0"  
        android:fromYDelta="120"  
        android:toYDelta="0"  
        android:duration="500" />  
</set>

然后定义消失效果的动画文件:
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">  
    <translate  
        android:fromXDelta="0"  
        android:toXDelta="0"  
        android:fromYDelta="0"  
        android:toYDelta="120"  
        android:duration="500" />  
</set>

PopupWindow的动画显示效果是通过setAnimationStyle(int id)方法设置的,其中id为一个style的id,所以我们要在styles.xml文件中设置一个动画样式:

<style name="popwin_anim_style">
     <item name="android:windowEnterAnimation">@anim/menushow</item>
     <item name="android:windowExitAnimation">@anim/menuhide</item>
</style>


add:
// the following 3 lines` codes are used to make sure the popupwindow can be closed when touch the other place
//out of the range of the popuewindow
//mWeatherPopuwindow.setFocusable(true);
//mWeatherPopuwindow.setOutsideTouchable(true);
//mWeatherPopuwindow.setBackgroundDrawable(new BitmapDrawable(getResources(), (Bitmap) null));
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值