我需要你的帮助才能在数组中的任何对象中添加图像。
我有MainActivity
创建了ArrayList
Item对象。 Item类放在每个对象名和id上。现在,我需要您的帮助来应用添加到此图像的任何连接到布局的函数。
创建新对象的MainActivity -
ArrayList<Item> arrayList = new ArrayList<>();
arrayList.add(new Item("a", 0));
arrayList.add(new Item("b", 1));
arrayList.add(new Item("c", 2));
arrayList.add(new Item("d", 3));
Item class(在这个类中我需要将图像初始化为对象) -
public class Item {
private final String name;
private final int id;
public Item(String name, int id) {
this.name = name;
this.id = id;
}
public int getId() {
return id;
}
public String getName() {
return name;
}
}
我的布局 -
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
xmlns:app="http://schemas.android.com/apk/res-auto"
app:elevation="5dp"
android:layout_margin="@dimen/item_margin"
android:layout_width="wrap_content"
android:layout_height="@dimen/item_height">
<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:id="@+id/text_item"
android:gravity="center"
android:layout_gravity="center" />
<ImageView
android:id="@+id/icon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:src="@mipmap/ic_launcher" />
</android.support.v7.widget.CardView>
感谢您的帮助!
答案 0 :(得分:0)
像您那样修改您的项目类
public class Item {
private final String name,imageUrl;
private final int id;
public Item(String name, int id,String url) {
this.name = name;
this.id = id;
this.imageUrl = url;
}
public int getId() {
return id;
}
public String getName() {
return name;
}
public String getImageUrl(){
return imageUrl;
}
}