App应用程序开发实验三 列表框

实验三 列表框

一、实验目的

1.掌握Android列表框界面布局定义及属性设置。

2.掌握Android适配器定义及创建。

3.掌握Android列表框及适配器绑定方法。

二、实验内容

使用ListView列表框,展示用户信息,每个列表项(item)给出某位用户的头像、姓名及简介描述信息,如图1。当点击某位用户,在窗口下面显示该用户名字,如图2。

                        

图1 初始化界面    图2 点击用户界面

三、实验仪器、设备

硬件:PC 微型计算机、8G以上内存、500G以上硬盘。

软件:Windows 7/10、Android Studio (Eclipse)、JDK、Android SDK。

四、实验步骤

1.建立Android 项目

2.拷贝头像(图标文件)到mipmap_mdpi下。

3.修改默认布局文件(主窗口),添加ListView控件。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context=".MainActivity">

    <ListView
        android:id="@+id/listuser"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:divider="#eee"
        android:dividerHeight="2dp"
        android:headerDividersEnabled="false"
        android:listSelector="#666"/>
</LinearLayout>

4.创建列表项布局文件。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">
    <ImageView android:id="@+id/photo"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:paddingLeft="10dp"/>
    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <TextView android:id="@+id/name"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textSize="20dp"
            android:textColor="#3f48cc"
            android:paddingLeft="10dp"
            android:layout_alignParentTop="true"/>
        <TextView android:id="@+id/desc"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textSize="14dp"
            android:paddingLeft="10dp"
            android:layout_below="@id/name"
            android:layout_alignLeft="@id/name"/>

    </RelativeLayout>
</LinearLayout>

5.修改主窗口java程序文件,添加列表视图相关代码

package com.sun.ch3;

import androidx.appcompat.app.AppCompatActivity;

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.util.Log;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemClickListener;
import android.widget.ArrayAdapter;
import android.widget.ListView;
import android.widget.SimpleAdapter;
import android.widget.TextView;
import android.widget.Toast;

public class MainActivity extends AppCompatActivity {
    private String[] names = new String[]{"小王", "小张", "小雪", "小吴"};
    private String[] desc = new String[]{"我今年1岁了", "我今年2岁了", "我今年3岁了", "我今年4岁了"};
    private int[] icons = new int[]{R.mipmap.ic_launcher, R.mipmap.ic_launcher, R.mipmap.ic_launcher, R.mipmap.ic_launcher};

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        List<Map<String, Object>> list = new ArrayList<Map<String, Object>>();
        for (int i = 0; i < names.length; i++) {
            Map<String, Object> item = new HashMap<String, Object>();
            item.put("image", icons[i]);
            item.put("name", names[i]);
            item.put("desc", desc[i]);
            list.add(item);
        }
        SimpleAdapter adapter = new SimpleAdapter(this, list,
                R.layout.simpleitem, new String[]{"image", "name", "desc"},
                new int[]{R.id.photo, R.id.name, R.id.desc});
        ListView lv = (ListView) findViewById(R.id.listuser);
        lv.setOnItemClickListener(new OnItemClickListener() {
            public void onItemClick(AdapterView<?> arg0, View arg1, int arg2, long arg3) {
                // TODO Auto-generated method stub
                TextView f = (TextView) arg1.findViewById(R.id.name);
                Toast.makeText(MainActivity.this, f.getText().toString(), Toast.LENGTH_LONG).show();
            }
        });
        lv.setAdapter(adapter);
    }
}

6.启动模拟器,运行。

7.修改列表项布局文件。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">
    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <TextView android:id="@+id/name"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textSize="20dp"
            android:textColor="#3f48cc"
            android:paddingLeft="10dp"
            android:layout_alignParentTop="true"/>
        <TextView android:id="@+id/desc"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textSize="14dp"
            android:paddingLeft="10dp"
            android:layout_below="@id/name"
            android:layout_alignLeft="@id/name"/>
        <ImageView android:id="@+id/photo"
            android:layout_alignParentRight="true"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:paddingLeft="10dp"/>
    </RelativeLayout>
</LinearLayout>

8.启动模拟器,运行。

五、实验思考题

1.本例程中的列表布局文件的名称是什么?

答:simpleitem.xml

2. SimpleAdapter具有何种作用?

答:可以将数据源内容映射到视图。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

小孙同学1024

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值