从我的主要活动中,我想将 a 传递ImageView
给另一个类的构造函数,或者如果你愿意,也可以传递给这个类的对象。下面的一些代码片段。
课堂案例:
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
. 我怎样才能正确地做到这一点?