• 在线商城项目EShop【ListView、adapter】


    要求如下:

    1、创建在线商城项目EShop;

    2、修改布局文件activity_main.xml,使用LineaLayout和ListView创建商品列表UI;

    3、创建列表项布局list_item.xml,设计UI用于显示商品图标、名称和价格信息;

    4、创建GoodsAdapter类,用于显示列表中的数据;

    5、在MainActivity中编写模拟的商品数据,把ListView对象关联到GoodsAdapter,实现商品数据的显示;

    6、尝试使用SimpleAdapter和ArrayAdapter实现相同功能。

    0.创建项目

    根据要求创建一个新的项目,命名为:EShop,选择合适的最低 API 级别和其他项目配置。

    1. 修改布局文件 activity_main.xml

    res/layout 文件夹中找到 activity_main.xml,使用 LinearLayout 和 ListView 创建商品列表 UI。

    如果不存在 res/layout,自行创建即可。

    
    <LinearLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">
    
        <ListView
            android:id="@+id/listView"
            android:layout_width="match_parent"
            android:layout_height="match_parent" />
    LinearLayout>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12

    在这里插入图片描述

    2. 创建列表项布局 list_item.xml

    res/layout 文件夹中创建一个新的 XML 布局文件,命名为 list_item.xml,用于显示商品图标、名称和价格信息。

    注意:这里如果没有图标,可以使用默认的:ic_launcher_foreground 和 “@drawable/ic_launcher_background”

    
    <LinearLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">
    
        <ImageView
            android:id="@+id/imageView"
            android:layout_width="64dp"
            android:layout_height="64dp"
            android:src="@drawable/ic_launcher_foreground" />
    
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical"
            android:layout_marginLeft="16dp">
    
            <TextView
                android:id="@+id/productName"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Product Name"
                android:textSize="18sp"
                android:textStyle="bold" />
    
            <TextView
                android:id="@+id/productPrice"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Price: $10.00"
                android:textSize="16sp" />
        LinearLayout>
    LinearLayout>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35

    3、创建 GoodsAdapter 类,用于显示列表中的数据:

    创建一个Goods类来表示商品,包括名称和价格属性。

    在src目录下创建Goods.kt文件:

    data class Goods(val name: String, val price: Double)
    
    • 1

    在这里插入图片描述

    创建一个GoodsAdapter类,用于将商品数据与ListView关联。

    在src目录下创建GoodsAdapter.kt文件

    package com.leo.eshop
    
    import android.content.Context
    import android.view.LayoutInflater
    import android.view.View
    import android.view.ViewGroup
    import android.widget.BaseAdapter
    import android.widget.ImageView
    import android.widget.TextView
    
    class GoodsAdapter(private val context: Context, private val goodsList: List<Goods>) : BaseAdapter() {
    
        override fun getCount(): Int {
            return goodsList.size
        }
    
        override fun getItem(position: Int): Any {
            return goodsList[position]
        }
    
        override fun getItemId(position: Int): Long {
            return position.toLong()
        }
    
        override fun getView(position: Int, convertView: View?, parent: ViewGroup?): View {
            val view = convertView ?: LayoutInflater.from(context).inflate(R.layout.list_item, parent, false)
    
            val goods = getItem(position) as Goods
    
            val name:TextView = view.findViewById(R.id.productName)
    
            val price :TextView = view.findViewById(R.id.productPrice)
    
            name.text = goods.name
            price.text =  "Price: $${goods.price}"
    
            return view
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39

    4.实现商品数据的显示

    在MainActivity.kt文件中,编写模拟的商品数据,并将ListView对象关联到GoodsAdapter,实现商品数据的显示:

    package com.leo.eshop
    
    import android.os.Bundle
    import android.widget.ListView
    import androidx.activity.ComponentActivity
    
    class MainActivity : ComponentActivity() {
        override fun onCreate(savedInstanceState: Bundle?) {
            super.onCreate(savedInstanceState)
            setContentView(R.layout.activity_main)
    
            val goodsList = listOf(
                Goods("Product 1", 10.99),
                Goods("Product 2", 19.99),
                Goods("Product 3", 5.99),
                // Add more items as needed
            )
    
            val adapter = GoodsAdapter(this,goodsList)
            val listView:ListView = findViewById(R.id.listView)
            listView.adapter = adapter
    
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24

    这样,你就完成了一个简单的在线商城项目,使用了LinearLayout和ListView来设计商品列表UI,同时使用GoodsAdapter来处理数据和UI的关联.

    实现效果

    在这里插入图片描述

  • 相关阅读:
    信息论与编码——信道编码
    数据结构考研第五章——树与二叉树(内含动图)
    Jetpack Compose Modifier 使用入门
    嵌入式Linux运行一定需要MMU吗
    【手把手教学webpack5】构建现代JS工程环境
    Codeforces 1750A. Indirect Sort
    LOTO虚拟示波器 关于触发灵敏度功能
    DBeaver连接数据库报错:Public Key Retrieval is not allowed 的解决方案
    SpringBoot整合Freemarker导出word文档表格
    【MyBatis】一、MyBatis概述与基本使用
  • 原文地址:https://blog.csdn.net/qq_22841387/article/details/133247742