溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

android如何實(shí)現(xiàn)側(cè)邊彈窗特效

發(fā)布時(shí)間:2021-06-21 10:25:19 來源:億速云 閱讀:265 作者:小新 欄目:開發(fā)技術(shù)

這篇文章主要為大家展示了“android如何實(shí)現(xiàn)側(cè)邊彈窗特效”,內(nèi)容簡(jiǎn)而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“android如何實(shí)現(xiàn)側(cè)邊彈窗特效”這篇文章吧。

今天來給大家講解下如何實(shí)現(xiàn) 安卓的側(cè)邊彈窗,

先大概講下基本原理吧,其實(shí)很簡(jiǎn)單,就是一個(gè)進(jìn)出動(dòng)效,用 位移 加 透明度 效果比較好,
比如你的側(cè)邊彈窗是在左邊,那就是從左往右位置 100%(代表動(dòng)效目標(biāo)的寬或高)
不過需要注意:
初始位置一定要先最后應(yīng)該顯示的位置,不要將該View使用Margin或其他位移至其他位置,不然動(dòng)效結(jié)束后,點(diǎn)擊視圖沒有響應(yīng),因?yàn)榇藭r(shí)View還在初始位置,所以你點(diǎn)擊View僅動(dòng)畫修改過后的位置是無效的,除非你使用的是屬性動(dòng)畫
下面來看下我的布局,簡(jiǎn)單寫了一個(gè):

android如何實(shí)現(xiàn)側(cè)邊彈窗特效

<?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下寫動(dòng)畫文件:
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">
    <!--透明度標(biāo)簽:表示透明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">
    <!--透明度標(biāo)簽:表示透明0到不透明1之間的變換-->
    <alpha
        android:fromAlpha="1.0"
        android:toAlpha="0.0" >
    </alpha>

    <translate
        android:fromXDelta="0%"
        android:toXDelta="100%">
    </translate>

</set>

最后是代碼去觸發(fā)動(dòng)畫:

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) {
            //一定要記得,動(dòng)畫結(jié)束后清除動(dòng)畫,然后及時(shí)View 處于 View.GONE狀態(tài)時(shí)也會(huì)觸發(fā)點(diǎn)擊兇過
                view.clearAnimation();
            }

            @Override
            public void onAnimationRepeat(Animation animation) {

            }
        });

其實(shí)還可以進(jìn)階一下,監(jiān)聽界面左邊部分的手勢(shì),當(dāng)按下點(diǎn)與抬起點(diǎn)之間的橫向距離達(dá)到一定值時(shí)啟動(dòng),入場(chǎng)動(dòng)畫或者出場(chǎng)動(dòng)畫,就可以達(dá)到通過手勢(shì)觸發(fā)或關(guān)閉側(cè)邊彈窗效果了,總體還是很簡(jiǎn)單的,大家可以試試

以上是“android如何實(shí)現(xiàn)側(cè)邊彈窗特效”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI