您好,登錄后才能下訂單哦!
本篇內容主要講解“android怎么實現側邊彈窗特效”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“android怎么實現側邊彈窗特效”吧!
先大概講下基本原理吧,其實很簡單,就是一個進出動效,用 位移 加 透明度 效果比較好,
比如你的側邊彈窗是在左邊,那就是從左往右位置 100%(代表動效目標的寬或高)
不過需要注意:
初始位置一定要先最后應該顯示的位置,不要將該View使用Margin或其他位移至其他位置,不然動效結束后,點擊視圖沒有響應,因為此時View還在初始位置,所以你點擊View僅動畫修改過后的位置是無效的,除非你使用的是屬性動畫
布局:
<?xml version="1.0" encoding="utf-8"?> <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity"> <RelativeLayout android:id="@+id/rel_dialog_back" android:background="#B3000000" android:layout_width="match_parent" android:layout_height="match_parent" > <!-- 商品信息彈窗 --> <LinearLayout android:layout_alignParentRight="true" android:id="@+id/lin_dialog_content" android:layout_width="400dp" android:layout_height="match_parent" android:padding="10dp" android:background="#FFFFFF" android:orientation="vertical"> <TextView android:layout_width="wrap_content" android:layout_height="match_parent" android:text="我是彈窗" android:textColor="@color/colorAccent" android:gravity="center" android:textSize="80sp" android:layout_gravity="center"/> </LinearLayout> </RelativeLayout> </androidx.constraintlayout.widget.ConstraintLayout>
然后就是res/anim下寫動畫文件:
dialog_in.xml:
<?xml version="1.0" encoding="utf-8"?> <set xmlns:android="http://schemas.android.com/apk/res/android" android:fillAfter="true" android:interpolator="@android:anim/decelerate_interpolator"> <!--透明度標簽:表示透明0到不透明1之間的變換--> <alpha android:fromAlpha="0.0" android:toAlpha="1.0" > </alpha> <!-- 100% 代表向右 視圖寬度, 0%代表視圖初始位置 --> <translate android:fromXDelta="100%" android:toXDelta="0%"> </translate> </set>
dialog_out.xml:
<?xml version="1.0" encoding="utf-8"?> <set xmlns:android="http://schemas.android.com/apk/res/android" android:fillAfter="true" android:interpolator="@android:anim/decelerate_interpolator"> <!--透明度標簽:表示透明0到不透明1之間的變換--> <alpha android:fromAlpha="1.0" android:toAlpha="0.0" > </alpha> <translate android:fromXDelta="0%" android:toXDelta="100%"> </translate> </set>
最后是代碼去觸發動畫:
final Animation anim = AnimationUtils.loadAnimation(this, R.anim.dialog_in); anim.setDuration(300); anim.setFillAfter(true); view.startAnimation(anim ); anim.setAnimationListener(new Animation.AnimationListener() { @Override public void onAnimationStart(Animation animation) { } @Override public void onAnimationEnd(Animation animation) { //一定要記得,動畫結束后清除動畫,然后及時View 處于 View.GONE狀態時也會觸發點擊兇過 view.clearAnimation(); } @Override public void onAnimationRepeat(Animation animation) { } });
到此,相信大家對“android怎么實現側邊彈窗特效”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。