Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android開發之圖形圖像與動畫(五)LayoutAnimationController詳解

Android開發之圖形圖像與動畫(五)LayoutAnimationController詳解

編輯:關於Android編程

  首先需要先介紹下LayoutAnimationController:

 * 1.LayoutAnimationController用於為一個layout裡面的控件,或者是一個ViewGroup
 * 裡面的控件設置動畫效果(即整個布局)
 * 2.每一個控件都有相同的動畫效果
 * 3.這些控件的動畫效果在不同的實現顯示出來
 * 4.LayoutAnimationController可以在xml文件當中設置,也可以在代碼中進行設置

本文就針對兩種實現LayoutAnimationController的方法分別進行介紹:

一,在XML文件中實現

步驟如下圖所示:



 下面以一個實例來說明實現的方法

實現的例子是點擊“測試”按鈕,有動畫形式的view展現出來,截圖如下:


具體的實現過程如下

需要兩個動畫xml文件:

1.list_item_layout
復制代碼 代碼如下:
<layoutAnimation xmlns:android="http://schemas.android.com/apk/res/android"
android:animation="@anim/list_item_alpha"
android:animationOrder="normal"
android:delay="0.8" />

2.list_item_alpha
復制代碼 代碼如下:
<set xmlns:android="http://schemas.android.com/apk/res/android">
<alpha
android:fromAlpha="0.0"
android:toAlpha="1.0"
android:duration="2000"
/>
</set>

3.需要在listview中添加如下的說明
復制代碼 代碼如下:
android:layoutAnimation="@anim/list_item_layout"

具體的實現代碼如下:
復制代碼 代碼如下:
public class LayoutAnimation_Activity extends Activity {
private Button button;
private Button button2;
private ListView listView;
private static final String[] STRINGS={"BruceZhang","Alhpa","Translate","Blanklin","Rotate",
"GreenFrank"};

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_layout_animation_);
button=(Button)findViewById(R.id.button);
button2=(Button)findViewById(R.id.button2);
listView=(ListView)findViewById(R.id.listview);
final ArrayAdapter<String> adapter=new ArrayAdapter<String>(this, R.layout.item_list, STRINGS);
button.setOnClickListener(new OnClickListener() {

@Override
public void onClick(View v) {
// TODO Auto-generated method stub
listView.setAdapter(adapter);
}
});
button2.setOnClickListener(new OnClickListener() {

@Override
public void onClick(View v) {
// TODO Auto-generated method stub
listView.setAdapter(null);
}
});
}


@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.activity_layout_animation_, menu);
return true;
}

}

二,在java代碼中實現LayoutAnimationController

實現的步驟如下圖:


在本例中用到的代碼如下
復制代碼 代碼如下:
Animation animation=AnimationUtils.loadAnimation(LayoutAnimation_Activity.this,
R.anim.list_item_alpha);
LayoutAnimationController laController=new LayoutAnimationController(animation);
laController.setOrder(LayoutAnimationController.ORDER_NORMAL);
listView.setLayoutAnimation(laController);

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved