-1
RecyclerView
の小さなImageButton
のリストをそれぞれ異なる色や背景で作成する必要があるとします。RecyclerView用のAndroidでImageButtonのモデルクラスを作成する正しい方法
どのモデルクラスが正しい方法ですか? ImageButton
public class ColorButton2 extends ImageButton{
private Context context;
private boolean isPlain, isWallpaper, isTextured;
private int color;
public ColorButton2(Context context,int color,boolean isPlain,boolean isTextured, boolean isWallpaper) {
super(context);
this.color = color;
this.isPlain = isPlain;
this.isWallpaper = isWallpaper;
this.isTextured = isTextured;
}
メンバ変数としてのImageButtonを有するクラスを拡張
モデルクラス:
public class ColorButton2{
private ImageButton imageButton
private Context context;
private boolean isPlain, isWallpaper, isTextured;
private int color;
public ColorButton2(Context context,int color,boolean isPlain,boolean isTextured, boolean isWallpaper) {
super(context);
this.color = color;
this.isPlain = isPlain;
this.isWallpaper = isWallpaper;
this.isTextured = isTextured;
}
ゲッターとセッターは、コードのコースの一部です。