A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

MainActivity.java文件 内容
package com.example.listdemo;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.widget.ListView;
import android.widget.SimpleAdapter;

public class MainActivity extends Activity {
        // 将数据放入到一个数组中
        private String[] s = new String[] { "赵二", "张三", "李四", "王五", "赵六", "钱七" };
        // 声明listview对象
        private ListView listview;

        @Override
        protected void onCreate(Bundle savedInstanceState) {
                super.onCreate(savedInstanceState);
                setContentView(R.layout.activity_main);
                // 给listview对象实例化
                listview = (ListView) findViewById(R.id.listview1);
                // 用map键值对将,数据存入到map键值对
                List<Map<String, String>> list = new ArrayList<Map<String, String>>();
                for (int i = 0; i < s.length; i++) {
                        HashMap<String, String> map = new HashMap<String, String>();
                        map.put("s", s[i]);
                        list.add(map);
                }
                // 定义二适配器
                SimpleAdapter sa = new SimpleAdapter(MainActivity.this, list,
                                R.layout.moban, new String[] { "s" },
                                new int[] { R.id.textview });
                // 启动适配器
                listview.setAdapter(sa);
        }
}

activity_main.xml文件 内容
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/container"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <ListView
        android:id="@+id/listview1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >
    </ListView>

</RelativeLayout>


在res/layout/下创建 moban.xml 内容
moban.xml 文件
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/container"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <TextView
        android:id="@+id/textview"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true" />

</RelativeLayout>



0 个回复

您需要登录后才可以回帖 登录 | 加入黑马