2、
public class Activity01 extends ListActivity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main); //加载布局文件。list排列
ArrayList> list = new ArrayList>(); // 创建list
HashMap map1 = new HashMap(); //创建映射
HashMap map2 = new HashMap();
HashMap map3 = new HashMap();
map1.put("user_name", "zhangsan"); //键值对里面的名字叫做 zhangsan
map1.put("user_ip", "192.168.0.1"); //键值对里面的ip 是192.168.0.1