爲listview,gridview添加布局動畫效果(通過資源文件方式)

public class MainActivity extends ListActivity {
private ArrayAdapter<String> adapter;
// private LayoutAnimationController lac;
// private ScaleAnimation sa;


    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        
        adapter = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, new String[]{"Hello","World","jikexueyuan"});
        
        setListAdapter(adapter);
        
        
//        sa = new ScaleAnimation(0, 1, 0, 1);
//        sa.setDuration(1000);
//        lac = new LayoutAnimationController(sa, 0.5f);
//        
//        getListView().setLayoutAnimation(lac);
    }


}


佈局文件代碼:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >
    <ListView
        android:id="@android:id/list"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layoutAnimation="@anim/listview_anim" >
    </ListView>
</LinearLayout>


listview_anim.xml文件代碼:

<?xml version="1.0" encoding="utf-8"?>
<layoutAnimation xmlns:android="http://schemas.android.com/apk/res/android"
    android:animation="@anim/scale_0_1"
    android:delay="0.5" >


</layoutAnimation>


scale_0_1.xml文件代碼:

<?xml version="1.0" encoding="utf-8"?>
<scale xmlns:android="http://schemas.android.com/apk/res/android"
    android:fromXScale="0"
    android:toXScale="1"
    android:fromYScale="0"
    android:toYScale="1"
    android:duration="1000" />


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章