以下为内容演示:代码和结果图
首先先做好页面布局(用线性布局的方法)
以下为做好的页面布局.
在创建一个item布局文件来显示商品信息.
这样我们的页面布局就写完了.
listview要创建实体类,所以建立对应的实体类.
- package com.example.bz0209.yukai.entity;
- /**
- * Created by Administrator on 2017/4/27.
- */
- public class Goods {
- private long id;
- private String name;
- private Integer amount;
- public Goods(String name, long id, Integer amount) {
- this.name = name;
- this.id = id;
- this.amount = amount;
- }
- public Goods(String name, Integer amount) {
- this.name = name;
- this