Android列表实现(1)_数组列表实例介绍
最近开始学习android的ui,先上几个相关的例子,后续还会有更新。 代码如下:import android.app.ListActivity; import android.os.Bundle; import android.widget.ArrayAdapter; /** * A list view example where the * data for the list comes from an array of strings. */ public class List1 extends ListActivity { @Override public void onCreate
用户评论