私の主な活動から、ImageView
別のクラスのコンストラクター、または必要に応じてこのクラスのオブジェクトに a を渡したいと思います。以下のいくつかのコードスニペット。
クラスケース:
public class Case {
String id;
int status;
Date date;
ImageView orginalFace;
ImageView profilePicture;
public Case(String id, int status, Date date, ImageView orginalFace, ImageView profilePicture) {
this.id= id;
this.status = status;
this.date = date;
this.orginalFace= orginalFace;
this.profilePicture= profilePicture;
}
}
そして、これは私がImageViewを追加しようとする場所です:
ArrayList<Case> cases = new ArrayList<Case>();
Case case1 = new Case("991176565809", 1, new Date(), R.drawable.face, R.drawable.profile);
追加しようとするR.drawable.face
と、R.drawable.profile
これはただのintegers
. どうすればこれを正しく行うことができますか?