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>
相關文章
相關標籤/搜索