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; } }
list中item的实现类
最新推荐文章于 2025-01-04 14:08:04 发布
本文介绍了一个名为BDLogo的Java类,该类包含用于存储高度文本和位图图像的方法。通过构造函数初始化高度字符串和位图,提供了获取图像、文本及转换高度值的方法。
557

被折叠的 条评论
为什么被折叠?



