Activityトピック設定をすべてアニメーションに切り替え

9229 ワード



1.テーマ

 -- Base application theme. -->
    
    -- animation   -->
    

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

2.アニメーション効果


slide_right_in

<set xmlns:android="http://schemas.android.com/apk/res/android">
    <translate
        android:duration="350"
        android:fromXDelta="100.0%p"
        android:toXDelta="0.0" />
set>

1
2
3
4
5
6
7
slide_right_out

<set xmlns:android="http://schemas.android.com/apk/res/android">
    <translate
        android:duration="350"
        android:fromXDelta="0.0"
        android:toXDelta="100.0%p" />
set>

1
2
3
4
5
6
7
slide_left_in

<set xmlns:android="http://schemas.android.com/apk/res/android" >

    <translate
        android:duration="350"
        android:fromXDelta="-100.0%p"
        android:toXDelta="0.0" />

set>

1
2
3
4
5
6
7
8
9
slide_left_out

<set xmlns:android="http://schemas.android.com/apk/res/android">
    <translate
        android:duration="350"
        android:fromXDelta="0.0"
        android:toXDelta="-100.0%p" />
set>

1
2
3
4
5
6
7
個人分類:
Activity切替特効