我有一个填充数据“ neededRepData”的列表,正在尝试将此列表添加到我的适配器中并遇到问题。下面是我的Reps类和我的方法(来自另一个类),以遍历requiredRepData。
public class Reps {
public int icon;
public String title;
public Reps() {
super();
}
public Reps(int icon, String title) {
super();
this.icon = icon;
this.title = title;
}
}
List<Reps> listOfReps = new ArrayList<Reps>();
for (int i = 0; i < neededRepData.size(); i++) {
String currentRep = neededRepData.get(i);
listOfReps.add(new Reps(R.drawable.unknown_representative, currentRep));
}
至此,我的listOfReps拥有了我期望的一切。但是,当我创建适配器时,我不得不执行以下操作。
Reps customRepData[] = new Reps[]{
new Reps(listOfReps.get(0).icon, listOfReps.get(0).title)
};
LocalRepAdapter adapter = new LocalRepAdapter(this, R.layout.mylist, customRepData);
我想将动态创建的customRepData []对象传递到适配器中,我看不到在customRepData []构造内部循环的方法,也许有更好的方法吗?
我的扩展ArrayAdapter类如下所示:
public class LocalRepAdapter extends ArrayAdapter<Reps> {
Context context;
int layoutResourceId;
Reps data[] = null;
public LocalRepAdapter(Context context, int layoutResourceId, Reps[] data) {
super(context, layoutResourceId, data);
this.layoutResourceId = layoutResourceId;
this.context = context;
this.data = data;
} ......
谢谢。
最佳答案
您被迫创建类数组Reps customRepData[]
,因为适配器的构造函数需要一个类数组,但是您可以轻松地将其更改为
public LocalRepAdapter(Context context, int layoutResourceId, ArrayList<Reps> list)
因此您不再需要
Reps customRepData[]
,只需将listOfReps
传递给它即可LocalRepAdapter adapter = new LocalRepAdapter(this, R.layout.mylist, listOfReps);
关于java - 动态构建类并将其添加到ArrayAdapter,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31902376/