您好,登錄后才能下訂單哦!
一.在xml中設(shè)置
a.在res/anim文件夾下新建一個XML文件,名為layout_anim.xml,
<layoutAnimation xmlns:android="http://schemas.android.com/apk/res/android"
android:delay="30%"
android:animationOrder="reverse"
android:animation="@anim/slide_anim" />
android:delay 子類動畫時(shí)間間隔 (延遲) 70% 也可以是一個浮點(diǎn)數(shù) 如“1.2”等
android:animationOrder="random" 子類的顯示方式 random表示隨機(jī)
android:animationOrder 的取值有
normal | 0 | 默認(rèn) |
reverse | 1 | 倒序 |
random | 2 | 隨機(jī) |
android:animation="@anim/slide_right" 表示子布局顯示時(shí)的動畫
注:delay的單位為秒;animation為設(shè)置動畫的文件,animationOrder為進(jìn)入方式
b. 在res/anim文件夾下新建一個XML文件,名為slide_anim,即上面用到的文件。
<set xmlns:android="http://schemas.android.com/apk/res/android"
android:interpolator="@android:anim/accelerate_interpolator">
<translate android:fromXDelta="-100%p" android:toXDelta="0"
android:duration="500" />
</set>
每個Item都是從左不可見(-100%p)的區(qū)域向右滑動到顯示的地方
c. 在主布局文件中為控件添加如下配置:
android:layoutAnimation="@anim/list_anim_layout",即第一步的布局文件。
二.在代碼中設(shè)置
//通過加載XML動畫設(shè)置文件來創(chuàng)建一個Animation對象;
Animation animation=AnimationUtils.loadAnimation(this, R.anim.slide_anim); //設(shè)置的動畫
//得到一個LayoutAnimationController對象;
LayoutAnimationController lac=new LayoutAnimationController(animation);
//設(shè)置控件顯示的順序;
lac.setOrder(LayoutAnimationController.ORDER_REVERSE);
//設(shè)置控件顯示間隔時(shí)間;
lac.setDelay(1);
//為layout設(shè)置LayoutAnimationController屬性;
layout.setLayoutAnimation(lac);
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。