list中item的实现类

xiaoxiao2021-02-28  51

package com.example.yjyyj.myapplication; import android.graphics.Bitmap; /** * Created by yjyyj on 2018/4/8. */ public class bdlogo { private Bitmap bitmap; private String high; public bdlogo(String high,Bitmap bitmap){ this.high = high; this.bitmap = bitmap; } public Bitmap getimage(){ return bitmap; } public String gettext(){ return this.high; } public int gethigh(){ return Integer.parseInt(this.high)+16; } }
转载请注明原文地址: https://www.6miu.com/read-2626260.html

最新回复(0)