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;
}
}