如何将图像添加到视图中

时间:2015-10-07 12:29:58

标签: android

所以我目前有这个:

final class Question {

private final String questionType;
private final String question;
private final ArrayList<String> answers;

private Question(final String questionType, final String question, final ArrayList<String> answers) {
    this.questionType = questionType;
    this.question = question;
    this.answers = answers;
}

/**
 * Takes a comma separated String of the question type, the question, and the answers, and returns a {@link Question} representation of them.
 * 
 * @param input The input String made up of the type of question, the question itself, and the answers (comma separated).
 * @return a {@link Question} representation of the input string.
 * @throws IllegalArgumentException
 */
public static Question parse(final String input) throws IllegalArgumentException {

    final String[] questionComponents;
    final String questionType;
    final String question;
    final ArrayList<String> answers = new ArrayList<String>();

关于这个:

娱乐,阿德里安·布罗迪赢得奥斯卡最佳男主角电影?,钢琴家,村庄,金刚,假人 娱乐,亚历克吉尼斯赢得奥斯卡最佳男主角电影?,桂河大桥,罗马帝国的沦陷,马蹄,薰衣草山暴徒 娱乐,亚历克·吉尼斯爵士赢得了奥斯卡最佳男主角电影?,桂河大桥,金钱奔跑,最后一个假期,提升泰坦尼克号 娱乐,艺术卡尼赢得了奥斯卡最佳男主角电影?哈利和托通,Roadie,The Late Show,Lanigan's Rabbi 娱乐,布罗德里克克劳福德赢得了奥斯卡最佳男主角电影?,所有国王的男人,黑天使,昨天出生,你生命的时间

我只是不确定如何将图像添加到文本列表中我是否只有一个带有@ drawable / image的额外行,我将如何将其添加到类中?

2 个答案:

答案 0 :(得分:0)

如果您使用的是图片网址,则放置String,或者如果您使用 drawable 中的图片,请使用 int (R.drawable.image)

答案 1 :(得分:0)

听起来像图像需要自己的变量,没有办法将图像添加到字符串数组中。您可以使用R.drawable.image_id通过解析方法传递要使用的图像ID。