Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> android開發之Animations的使用(四)

android開發之Animations的使用(四)

編輯:關於Android編程

android開發之Animations的使用(四)

本博文主要講述的是,animation在layout中的使用。本文是用ListView控件為例子 實現在layout中的使用有兩種方法, 第一是直接使用xml文件中的layoutAnimation標簽 第二是使用代碼實現,使用layoutAnimationController對象完成, 詳細代碼如下: MainActivity.java:
package com.example.animationtest4; import java.util.ArrayList;
import java.util.HashMap;
import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.animation.Animation;
import android.view.animation.AnimationUtils;
import android.view.animation.LayoutAnimationController;
import android.widget.Button;
import android.widget.ListAdapter;
import android.widget.ListView;
import android.widget.SimpleAdapter;

/*
*本類主要實現的是Animation的動畫效果在layout控件中的使用
*本例將anim_list動畫效果應用於listview 控件中
*/
public class MainActivity extends Activity {


private Button testButton = null;
private ListView listView = null;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
testButton = (Button)findViewById(R.id.myButton);
listView = (ListView)findViewById(R.id.myList);

testButton.setOnClickListener(new buttonListener());
}

class buttonListener implements OnClickListener{


@Override
public void onClick(View v) {
// TODO Auto-generated method stub

//使用布局文件完成對Layout控件的動畫效果的設置
//查看layout_anim_list.xml文件

//listView.setAdapter(buildListAdapter());

//使用xml文件實現,需要在相應的layout控件中添加如下語句:

android:layoutAnimation="@anim/layout_anim_list"






//使用代碼實現layout控件的動畫效果設置
listView.setAdapter(buildListAdapter());
Animation animation = AnimationUtils.loadAnimation(MainActivity.this, R.anim.anim_list);
//創建LayoutAnimationController對象,且設置延時為0.5s
LayoutAnimationController lac = new LayoutAnimationController(animation, 0.5f);
//設置顯示的順序是normal
lac.setOrder(LayoutAnimationController.ORDER_NORMAL);
listView.setLayoutAnimation(lac);

}

}


// 創建一個listAdapter對象
private ListAdapter buildListAdapter(){
ArrayList> list = new ArrayList>();
HashMap map1 = new HashMap();
HashMap map2 = new HashMap();
HashMap map3 = new HashMap();

map1.put("user", "張三");
map1.put("sex", "男");
map2.put("user", "李四");
map2.put("sex", "女");
map3.put("user", "王五");
map3.put("sex", "男");

list.add(map1);
list.add(map2);
list.add(map3);

SimpleAdapter adapter = new SimpleAdapter(MainActivity.this, list, R.layout.item, new String[]{"user","sex"}, new int[]{R.id.user,R.id.sex});

return adapter;
}


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


}


動畫效果布局文件anim_list.xml:


android:interpolator="@android:anim/accelerate_interpolator" >

android:duration="2000"
android:fromAlpha="0.0"
android:toAlpha="1.0" />


layout控件實現動畫效果的布局文件layout_anim_list.xml:


xmlns:android="http://schemas.android.com/apk/res/android"
android:delay="0.5"
android:animationOrder="normal"
android:animation="@anim/anim_list">



main.xml:

xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >


android:id="@+id/myText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world" />

android:id="@+id/myList"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@id/myText"
//android:layoutAnimation="@anim/layout_anim_list"
/>


android:id="@+id/myButton"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@id/myList"
android:text="測試" />


listview條目的布局文件item.xml:


android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
android:id="@+id/user"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>

android:id="@+id/sex"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>




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