Android中,若要刻一個slide功能的程式或者做物件的進出場,可以透過ViewFlipper來完成
main.xml中必須先用ViewFlipper這個元素將你要的物件包覆在裡面
main.xml:
1 | <? xml version = "1.0" encoding = "utf-8" ?> |
3 | android:layout_width = "fill_parent" |
4 | android:layout_height = "fill_parent" |
5 | android:orientation = "vertical" |
6 | android:background = "#FFF" |
9 | android:id = "@+id/viewflipper" |
10 | android:layout_width = "fill_parent" |
11 | android:layout_height = "300px" |
12 | android:background = "#666" |
15 | android:id = "@+id/fire" |
16 | android:layout_width = "256px" |
17 | android:layout_height = "256px" |
18 | android:src = "@drawable/fire" |
22 | android:id = "@+id/fire" |
23 | android:layout_width = "256px" |
24 | android:layout_height = "256px" |
25 | android:src = "@drawable/fire2" |
31 | android:layout_width = "wrap_content" |
32 | android:layout_height = "wrap_content" |
Java程式:
1 | import android.app.Activity; |
2 | import android.os.Bundle; |
3 | import android.view.View; |
4 | import android.view.View.OnClickListener; |
5 | import android.view.animation.AnimationUtils; |
6 | import android.widget.Button; |
7 | import android.widget.ViewFlipper; |
9 | public class MovePicActivity extends Activity { |
14 | public void onCreate(Bundle savedInstanceState) { |
15 | super .onCreate(savedInstanceState); |
16 | setContentView(R.layout.main); |
18 | Button bu = (Button) findViewById(R.id.bu); |
21 | vf = (ViewFlipper) this . findViewById(R.id.viewflipper); |
24 | vf.setInAnimation(AnimationUtils.loadAnimation( this , R.layout.in)); |
25 | vf.setOutAnimation(AnimationUtils.loadAnimation( this , R.layout.out)); |
31 | bu.setOnClickListener( new OnClickListener(){ |
32 | public void onClick(View w){ |
在主程式中你會看到進出場動畫我用了兩個檔案in.xml和out.xml,
其實這兩支程式就是動畫的設定檔
in.xml:
1 | <? xml version = "1.0" encoding = "utf-8" ?> |
4 | < translate android:fromXDelta = "20" |
6 | android:duration = "5000" /> |
8 | < alpha android:fromAlpha = "0.0" |
10 | android:duration = "1000" /> |
out.xml:
1 | <? xml version = "1.0" encoding = "utf-8" ?> |
4 | < translate android:fromXDelta = "600" |
6 | android:duration = "5000" /> |
8 | < alpha android:fromAlpha = "1.0" |
10 | android:duration = "1000" /> |