給Activity、Fragment設定切換動畫及ViewGroup中子元素出場方式
1、Activity之間切換的動畫
-
特別提示:Activity之間的切換動畫有很多種方式,這裡僅僅摘抄上文中提到的部落格(http://www.jianshu.com/p/733532041f46 )中的方法,想要學習更多方法可參考這篇部落格(http://blog.csdn.net/qq_23547831/article/details/51821159 ),裡面提到了五種方式來實現
-
Activity切換動畫即 Activity 啟動 / 退出時的動畫效果。
1.1 設定動畫的方式
a、 啟動時的動畫
Intent intent=new Intent(this,SecondActivity.class); startActivity(intent); //設定啟動動畫,採用overridePendingTransition overridePendingTransition(R.anim.enter_anim,R.anim.exit_anim); //引數說明: //enterAnim:從Activity a跳轉到Activity b,進入b時的動畫效果資源ID //exitAnim:從Activity a跳轉到Activity b,離開a時的動畫效果資源ID // 特別注意 // overridePendingTransition()必須要在startActivity(intent)後被呼叫才能生效
b、退出時的動畫
@Override public void finish() { super.finish(); // 採用overridePendingTransition(int enterAnim, int exitAnim)進行設定 overridePendingTransition(R.anim.enter_anim,R.anim.exit_anim); //引數說明: // enterAnim:從Activity a跳轉到Activity b,進入b時的動畫效果資源ID // exitAnim:從Activity a跳轉到Activity b,離開a時的動畫效果資源Id // 特別注意 // overridePendingTransition()必須要在finish()後被呼叫才能生效 }
1.2 使用系統自帶的動畫
- 對於引數 enterAnim & exitAnim 的資源ID,系統有自帶的效果android.R.anim.xxx,如下設定:
Intent intent=new Intent(this,SecondActivity.class); startActivity(intent); //系統自帶動畫--淺入淺出效果 overridePendingTransition(android.R.anim.fade_in,android.R.anim.fade_out); //系統自帶動畫--從左向右滑動的效果 overridePendingTransition(android.R.anim.slide_in_left,android.R.anim.slide_out_right); //等等....
-
效果圖大致如下:
淺入淺出.gif
從左向右滑.gif
1.3 自定義切換效果
- 除了使用系統自帶的切換效果,還可以自定義Activity的切換效果:
此處就用到補間動畫了
1.3.1 自定義例項 --淡入淡出 效果
- 淡入淡出 效果是採用透明度動畫(Alpha)。
fade_in.xml (淡入)
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android" >
<alpha
android:duration="1500"
android:fromAlpha="0.0"
android:toAlpha="1.0" />
</set>
fade_out.xml (淡出)
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android" >
<alpha
android:duration="1500"
android:fromAlpha="1.0"
android:toAlpha="0.0" />
</set>
在Java程式碼中設定
Intent intent = new Intent(MainActivity.this, SecActivity.class);
startActivity(intent);
// 自定義的淡入淡出動畫效果
overridePendingTransition(R.anim.fade_in, R.anim.fade_out);
1.3.2 自定義例項 --左右滑動 效果
-
左右滑動 效果是採用平移動畫(Translate)
-
先了解 Activity 的位置資訊,如下圖
944365-c5bc4784f2ba9764.png
-
從上圖可以看出:
- 以螢幕底邊為X軸,螢幕左邊為Y軸;
-
當Activity在X軸 = -100%p時,剛好完全超出螢幕到左邊(位置1)
-
當Activity在X軸 = 0%p時,剛好完全在螢幕內(位置2)
-
當Activity在X軸 = 100%p時,剛好完全超出螢幕到右邊(位置3)
-
定義一個動畫效果:從右滑到左
out_to_left.xml
從中間滑到左邊,即從位置2 - 位置1
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
>
<translate
android:duration="500"
android:fromXDelta="0%p"
android:toXDelta="-100%p"
/>
</set>
in_from_right.xml
從右邊滑到中間,即從位置3 - 位置2
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
>
<translate
android:duration="500"
android:fromXDelta="100%p"
android:toXDelta="0%p"
/>
</set>
在Java程式碼中設定效果
Intent intent = new Intent(MainActivity.this, SecActivity.class);
startActivity(intent)
// 自定義 從右向左滑動的效果
overridePendingTransition(R.anim.in_from_right, R.anim.out_to_left);
1.4 關於其他切換效果
-
關於 縮放和旋轉動畫 作為Activity的動畫效果也是類似的
-
通過 想象力 能組合 上述4種基本動畫 進行動畫效果展示
即這種切換效果還能使用補間動畫的組合動畫
- 此處僅列出較為簡單的切換效果,如想實現更多酷炫的切換動畫,http://www.jianshu.com/p/37e94f8b6f59)
2、Fragment動畫切換效果
2.1 系統自帶的動畫切換效果
FragmentTransaction fragmentTransaction = mFragmentManager
.beginTransaction();
fragmentTransaction.setTransition(int transit);
// 通過setTransition(int transit)進行設定
// transit引數說明
// 1. FragmentTransaction.TRANSIT_NONE:無動畫
// 2. FragmentTransaction.TRANSIT_FRAGMENT_OPEN:標準的開啟動畫效果
// 3. FragmentTransaction.TRANSIT_FRAGMENT_CLOSE:標準的關閉動畫效果
// 標準動畫設定好後,在Fragment新增和移除的時候都會有。
2.2 自定義動畫切換效果
// 採用`FragmentTransavtion`的 `setCustomAnimations()`進行設定
FragmentTransaction fragmentTransaction = mFragmentManager
.beginTransaction();
fragmentTransaction.setCustomAnimations(
R.anim.in_from_right,
R.anim.out_to_left);
// 此處的自定義動畫效果同Activity,此處不再過多描述
3、檢視組(ViewGroup)中子元素的出場效果
-
檢視組(ViewGroup)中子元素可以具備出場時的補間動畫效果
-
常用需求場景:為ListView的 item 設定出場動畫
使用步驟:
步驟1:設定子元素的出場動畫
res/anim/view_animation.xml
<?xml version="1.0" encoding="utf-8"?>
// 此處採用了組合動畫
<set xmlns:android="http://schemas.android.com/apk/res/android" >
android:duration="3000"
<alpha
android:duration="1500"
android:fromAlpha="1.0"
android:toAlpha="0.0" />
<translate
android:fromXDelta="500"
android:toXDelta="0"
/>
</set>
步驟2:設定 檢視組(ViewGroup)的動畫檔案
res/ anim /anim_layout.xml
<?xml version="1.0" encoding="utf-8"?>
// 採用LayoutAnimation標籤
<layoutAnimation xmlns:android="http://schemas.android.com/apk/res/android"
android:delay="0.5"
// 子元素開始動畫的時間延遲
// 如子元素入場動畫的時間總長設定為300ms
// 那麼 delay = "0.5" 表示每個子元素都會延遲150ms才會播放動畫效果
// 第一個子元素延遲150ms播放入場效果;第二個延遲300ms,以此類推
android:animationOrder="normal"
// 表示子元素動畫的順序
// 可設定屬性為:
// 1. normal :順序顯示,即排在前面的子元素先播放入場動畫
// 2. reverse:倒序顯示,即排在後面的子元素先播放入場動畫
// 3. random:隨機播放入場動畫
android:animation="@anim/view_animation"
// 設定入場的具體動畫效果
// 將步驟1的子元素出場動畫設定到這裡
/>
步驟3:為檢視組(ViewGroup)指定andorid:layoutAnimation屬性
- 指定的方式有兩種: XML / Java程式碼設定
方式1:在 XML 中指定
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#FFFFFF"
android:orientation="vertical" >
<ListView
android:id="@+id/listView1"
android:layoutAnimation="@anim/anim_layout"
// 指定layoutAnimation屬性用以指定子元素的入場動畫
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>
方式2:在Java程式碼中指定
這樣就不用額外設定res/ anim /anim_layout.xml該xml檔案了
ListView lv = (ListView) findViewById(R.id.listView1);
// 載入子元素的出場動畫
Animation animation = AnimationUtils.loadAnimation(this,R.anim.anim_item);
// 設定LayoutAnimation的屬性
LayoutAnimationController controller = new LayoutAnimationController(animation);
controller.setDelay(0.5f);
controller.setOrder(LayoutAnimationController.ORDER_NORMAL);
// 為ListView設定LayoutAnimation的屬性
lv.setLayoutAnimation(controller);
效果大致如下:
944365-9d9ef2db4cfb9cb8.gif