popupwindow淡入淡出

新建xml文件(push_bottom_in.xml,push_bottom_out.xml),写入实现淡入淡出效果的代码:android

<?xml version="1.0" encoding="utf-8"?>
<!--<淡入-->
<set xmlns:android="http://schemas.android.com/apk/res/android">
    <alpha
        android:duration="200"
        android:fromAlpha="0.0"
        android:toAlpha="1.0" />

</set>

 

<?xml version="1.0" encoding="utf-8"?>
<!--<淡出-->
<set xmlns:android="http://schemas.android.com/apk/res/android">
    <alpha
        android:duration="200"
        android:fromAlpha="1.0"
        android:toAlpha="0.0" />
</set>
相关文章
相关标签/搜索