Android中ListView与ArrayAdapter配合使用

来源:互联网 发布:淘宝怎么改最低折扣 编辑:程序博客网 时间:2024/05/23 15:39

Android中ListView与ArrayAdapter配合使用

1. [代码]main.xml  

<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:Android="http://schemas.android.com/apk/res/android"    Android:orientation="vertical" android:layout_width="fill_parent"    Android:layout_height="fill_parent">    <!--  注意这里的Android:id是使用内置的-->    <ListView    Android:id="@android:id/list "                Android:layout_width="fill_parent"                Android:layout_height="wrap_content"></ListView>       </LinearLayout> 

2. [代码][Java]代码

protected void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.main);        String[]items ={"aaa","bbbb","cccc"};        ArrayAdapter arrayAdapter = new ArrayAdapter(this,Android.R.layout.simple_list_item_1 ,items);        setListAdapter(arrayAdapter); }


原创粉丝点击