IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 移动开发 -> 安卓:自定义适配器 -> 正文阅读

[移动开发]安卓:自定义适配器

安卓:自定义适配器

activity_main

<?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"
    tools:context=".MainActivity">

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

</LinearLayout>

item 小项

<?xml version="1.0" encoding="utf-8"?>
<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/product_picture"
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:src="@mipmap/caomei"
        />
    <LinearLayout
        android:layout_marginTop="5dp"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">
        <TextView
            android:id="@+id/product_name"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="5dp"
            android:textSize="25dp"
            android:text="丹东草莓"/>


        <LinearLayout
            android:layout_marginTop="15dp"
            android:layout_width="match_parent"
            android:layout_height="match_parent">
            <TextView
                android:id="@+id/product_price"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:textSize="25dp"
                android:textColor="#ff2121"
                android:text="¥20"/>
            <TextView
                android:layout_marginStart="70dp"
                android:id="@+id/product_stocks"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginLeft="5dp"
                android:textSize="25dp"
                android:text="库存量"/>
        </LinearLayout>
    </LinearLayout>
</LinearLayout>

MainActivity

package com.example.demoadapter;

import androidx.appcompat.app.AppCompatActivity;

import android.os.Bundle;
import android.widget.ListView;

import java.util.ArrayList;
import java.util.List;

public class MainActivity extends AppCompatActivity {
    //控件
    private ListView listViewProduct ;
    //数据
    List<Product> listProduct ;
    //自定义适配器
    ProductAdapter productAdapter ;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        //获取控件
        getView() ;
        //准备数据
        listProduct = makeData();
        //实例化适配器
        productAdapter = new ProductAdapter(this , listProduct,R.layout.item );
        //绑定适配器
        listViewProduct.setAdapter(productAdapter);

    }

    private List<Product> makeData() {
        List<Product> productList = new ArrayList<>() ;
        Product caomei = new Product(R.mipmap.caomei , "草莓","21.5",11 ) ;
        productList.add(caomei) ;
        Product dagao = new Product(R.mipmap.dagao , "打糕" ,"9.5",15 ) ;
        productList.add(dagao) ;
        Product xiaobei = new Product(R.mipmap.xiaobei , "肉松小贝" ,"25" ,61 ) ;
        productList.add(xiaobei) ;
        Product zhishi = new Product(R.mipmap.zhishi , "芝士饼干" , "19" , 12 ) ;
        productList.add(zhishi) ;
        return productList ;
    }

    private void getView() {
        listViewProduct = findViewById(R.id.lv_product) ;
    }
}
···

## Product
```java
package com.example.demoadapter;

public class Product {
    private int picture;//图片
    private String name ;//名字
    private String price ;//价钱
    private int stocks ;//库存量

    public Product(int picture, String name, String price, int stocks) {
        this.picture = picture;
        this.name = name;
        this.price = price;
        this.stocks = stocks;
    }

    public int getPicture() {
        return picture;
    }

    public void setPicture(int picture) {
        this.picture = picture;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getPrice() {
        return price;
    }

    public void setPrice(String price) {
        this.price = price;
    }

    public int getStocks() {
        return stocks;
    }

    public void setStocks(int stocks) {
        this.stocks = stocks;
    }

    @Override
    public String toString() {
        return "Product{" +
                "picture=" + picture +
                ", name='" + name + '\'' +
                ", price='" + price + '\'' +
                ", stocks=" + stocks +
                '}';
    }
}

ProductAdapter

package com.example.demoadapter;

import android.content.Context;
import android.content.Intent;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.ImageView;
import android.widget.TextView;

import java.util.List;

public class ProductAdapter extends BaseAdapter {
    //上下文环境
    private Context mcontext ;
    //数据源
    private List<Product> listProduct ;
    //子控件
    private int layout ;
    //构造方法传入数据

    public ProductAdapter(Context mcontext, List<Product> listProduct, int layout) {
        this.mcontext = mcontext;
        this.listProduct = listProduct;
        this.layout = layout;
    }

    @Override
    public int getCount() {
        return listProduct.size();
    }

    @Override
    public Object getItem(int i) {
        return listProduct.get(i);
    }

    @Override
    public long getItemId(int i) {
        return i;
    }

    @Override
    public View getView(int i, View view, ViewGroup viewGroup) {
        if(null == view) {
            //获取item控件
            LayoutInflater inflater = LayoutInflater.from(mcontext) ;
            view = inflater.inflate(R.layout.item , null) ;

        }
        //获取子布局中控件
        ImageView picture = view.findViewById(R.id.product_picture) ;
        TextView name = view.findViewById(R.id.product_name) ;
        TextView price = view.findViewById(R.id.product_price) ;
        TextView stocks = view.findViewById(R.id.product_stocks) ;
        //获取当前的元素
        Product product = listProduct.get(i) ;
        //绑定数据
        picture.setImageResource(product.getPicture());
        name.setText(product.getName());
        price.setText("¥" + product.getPrice());
        stocks.setText("库存量" + product.getStocks());
        return view;
    }
}

实现效果图

在这里插入图片描述

  移动开发 最新文章
Vue3装载axios和element-ui
android adb cmd
【xcode】Xcode常用快捷键与技巧
Android开发中的线程池使用
Java 和 Android 的 Base64
Android 测试文字编码格式
微信小程序支付
安卓权限记录
知乎之自动养号
【Android Jetpack】DataStore
上一篇文章      下一篇文章      查看所有文章
加:2022-05-13 11:51:34  更:2022-05-13 11:51:50 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/25 1:53:09-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码