如何在android中使用Intent将对象的ArrayList从一个传递给另一个活动?

时间:2012-11-28 09:34:00

标签: android android-intent parcelable

我的onClick()方法中的代码中包含以下内容

 List<Question> mQuestionsList = QuestionBank.getQuestions();

现在我有了这一行后的意图,如下:

  Intent resultIntent = new Intent(this, ResultActivity.class);
  resultIntent.putParcelableArrayListExtra("QuestionsExtra", (ArrayList<? extends Parcelable>) mQuestionsList);
  startActivity(resultIntent);

我不知道如何将意图从一个活动传递给另一个活动 我的问题类

public class Question {
    private int[] operands;
    private int[] choices;
    private int userAnswerIndex;

    public Question(int[] operands, int[] choices) {
        this.operands = operands;
        this.choices = choices;
        this.userAnswerIndex = -1;
    }

    public int[] getChoices() {
        return choices;
    }

    public void setChoices(int[] choices) {
        this.choices = choices;
    }

    public int[] getOperands() {
        return operands;
    }

    public void setOperands(int[] operands) {
        this.operands = operands;
    }

    public int getUserAnswerIndex() {
        return userAnswerIndex;
    }

    public void setUserAnswerIndex(int userAnswerIndex) {
        this.userAnswerIndex = userAnswerIndex;
    }

    public int getAnswer() {
        int answer = 0;
        for (int operand : operands) {
            answer += operand;
        }
        return answer;
    }

    public boolean isCorrect() {
        return getAnswer() == choices[this.userAnswerIndex];
    }

    public boolean hasAnswered() {
        return userAnswerIndex != -1;
    }

    @Override
    public String toString() {
        StringBuilder builder = new StringBuilder();

        // Question
        builder.append("Question: ");
        for(int operand : operands) {
            builder.append(String.format("%d ", operand));
        }
        builder.append(System.getProperty("line.separator"));

        // Choices
        int answer = getAnswer();
        for (int choice : choices) {
            if (choice == answer) {
                builder.append(String.format("%d (A) ", choice));
            } else {
                builder.append(String.format("%d ", choice));
            }
        }
        return builder.toString();
       }

      }

19 个答案:

答案 0 :(得分:50)

活动之间:为我工作

ArrayList<Object> object = new ArrayList<Object>();
Intent intent = new Intent(Current.class, Transfer.class);
Bundle args = new Bundle();
args.putSerializable("ARRAYLIST",(Serializable)object);
intent.putExtra("BUNDLE",args);
startActivity(intent);

在Transfer.class中

Intent intent = getIntent();
Bundle args = intent.getBundleExtra("BUNDLE");
ArrayList<Object> object = (ArrayList<Object>) args.getSerializable("ARRAYLIST");

希望这有帮助的人。

使用Parcelable在活动

之间传递数据

这通常在您创建DataModel

时有效

e.g。假设我们有一个类型为

的json
{
    "bird": [{
        "id": 1,
        "name": "Chicken"
    }, {
        "id": 2,
        "name": "Eagle"
    }]
}

这里的bird是一个List,它包含两个元素,所以

我们将使用jsonschema2pojo

创建模型

现在我们有模型类Name BirdModel和Bird BirdModel由Bird列表组成 和Bird包含名称和ID

转到鸟类并添加界面&#34; 实现Parcelable &#34;

通过Alt + Enter

在android studio中添加implementsmets方法

注意:将出现一个对话框,说明添加实现方法 按Enter键

按Alt + Enter

添加Parcelable实现

注意:将出现一个对话框,说明添加Parcelable实现 然后再次输入

现在将它传递给意图。

List<Bird> birds = birdModel.getBird();
Intent intent = new Intent(Current.this, Transfer.class);
Bundle bundle = new Bundle();
bundle.putParcelableArrayList("Birds", birds);
intent.putExtras(bundle);
startActivity(intent);

关于转移活动onCreate

List<Bird> challenge = this.getIntent().getExtras().getParcelableArrayList("Birds");

谢谢

如果有任何问题,请告诉我。

答案 1 :(得分:23)

步骤:

  1. 将您的对象类实现为可序列化

    public class Question implements Serializable`
    
  2. 将此内容放入来源活动

    ArrayList<Question> mQuestionList = new ArrayList<Question>;
    mQuestionsList = QuestionBank.getQuestions();  
    mQuestionList.add(new Question(ops1, choices1));
    
    Intent intent = new Intent(SourceActivity.this, TargetActivity.class);
    intent.putExtra("QuestionListExtra", mQuestionList);
    
  3. 将其放入目标活动

     ArrayList<Question> questions = new ArrayList<Question>();
     questions = (ArrayList<Questions>) getIntent().getSerializableExtra("QuestionListExtra");
    

答案 2 :(得分:18)

效果很好,

public class Question implements Serializable {
    private int[] operands;
    private int[] choices;
    private int userAnswerIndex;

   public Question(int[] operands, int[] choices) {
       this.operands = operands;
       this.choices = choices;
       this.userAnswerIndex = -1;
   }

   public int[] getChoices() {
       return choices;
   }

   public void setChoices(int[] choices) {
       this.choices = choices;
   }

   public int[] getOperands() {
       return operands;
   }

   public void setOperands(int[] operands) {
       this.operands = operands;
   }

   public int getUserAnswerIndex() {
       return userAnswerIndex;
   }

   public void setUserAnswerIndex(int userAnswerIndex) {
       this.userAnswerIndex = userAnswerIndex;
   }

   public int getAnswer() {
       int answer = 0;
       for (int operand : operands) {
           answer += operand;
       }
       return answer;
   }

   public boolean isCorrect() {
       return getAnswer() == choices[this.userAnswerIndex];
   }

   public boolean hasAnswered() {
       return userAnswerIndex != -1;
   }

   @Override
   public String toString() {
       StringBuilder builder = new StringBuilder();

       // Question
       builder.append("Question: ");
       for(int operand : operands) {
           builder.append(String.format("%d ", operand));
       }
       builder.append(System.getProperty("line.separator"));

       // Choices
       int answer = getAnswer();
       for (int choice : choices) {
           if (choice == answer) {
               builder.append(String.format("%d (A) ", choice));
           } else {
               builder.append(String.format("%d ", choice));
           }
       }
       return builder.toString();
     }
  }

在您的源活动中,使用此:

  List<Question> mQuestionList = new ArrayList<Question>;
  mQuestionsList = QuestionBank.getQuestions();
  mQuestionList.add(new Question(ops1, choices1));

  Intent intent = new Intent(SourceActivity.this, TargetActivity.class);
  intent.putExtra("QuestionListExtra", ArrayList<Question>mQuestionList);

在目标活动中,使用:

  List<Question> questions = new ArrayList<Question>();
  questions = (ArrayList<Question>)getIntent().getSerializableExtra("QuestionListExtra");

答案 3 :(得分:5)

通过Parcelable传递您的对象。 这里有一个good tutorial让你入门 第一个问题应该像这样实现Parcelable并添加这些行:

public class Question implements Parcelable{
    public Question(Parcel in) {
        // put your data using = in.readString();
  this.operands = in.readString();;
    this.choices = in.readString();;
    this.userAnswerIndex = in.readString();;

    }

    public Question() {
    }

    @Override
    public int describeContents() {
        // TODO Auto-generated method stub
        return 0;
    }

    @Override
    public void writeToParcel(Parcel dest, int flags) {
        dest.writeString(operands);
        dest.writeString(choices);
        dest.writeString(userAnswerIndex);
    }

    public static final Parcelable.Creator<Question> CREATOR = new Parcelable.Creator<Question>() {

        @Override
        public Question[] newArray(int size) {
            return new Question[size];
        }

        @Override
        public Question createFromParcel(Parcel source) {
            return new Question(source);
        }
    };

}

然后传递你的数据:

Question question = new Question();
// put your data
  Intent resultIntent = new Intent(this, ResultActivity.class);
  resultIntent.putExtra("QuestionsExtra", question);
  startActivity(resultIntent);

获取这样的数据:

Question question = new Question();
Bundle extras = getIntent().getExtras();
if(extras != null){
    question = extras.getParcelable("QuestionsExtra");
}

这样做!

答案 4 :(得分:4)

您的bean或pojo类应该implements parcelable interface

例如:

public class BeanClass implements Parcelable{
    String name;
    int age;
    String sex;

    public BeanClass(String name, int age, String sex) {
        this.name = name;
        this.age = age;
        this.sex = sex;
    } 
     public static final Creator<BeanClass> CREATOR = new Creator<BeanClass>() {
        @Override
        public BeanClass createFromParcel(Parcel in) {
            return new BeanClass(in);
        }

        @Override
        public BeanClass[] newArray(int size) {
            return new BeanClass[size];
        }
    };
    @Override
    public int describeContents() {
        return 0;
    }

    @Override
    public void writeToParcel(Parcel dest, int flags) {
        dest.writeString(name);
        dest.writeInt(age);
        dest.writeString(sex);
    }
}

考虑一种方案,您希望将arraylist beanclass类型从Activity1发送到Activity2
使用以下代码

活性1:

ArrayList<BeanClass> list=new ArrayList<BeanClass>();

private ArrayList<BeanClass> getList() {
    for(int i=0;i<5;i++) {

        list.add(new BeanClass("xyz", 25, "M"));
    }
    return list;
}
private void gotoNextActivity() {
    Intent intent=new Intent(this,Activity2.class);
    /* Bundle args = new Bundle();
    args.putSerializable("ARRAYLIST",(Serializable)list);
    intent.putExtra("BUNDLE",args);*/

    Bundle bundle = new Bundle();
    bundle.putParcelableArrayList("StudentDetails", list);
    intent.putExtras(bundle);
    startActivity(intent);
}

活性2:

ArrayList<BeanClass> listFromActivity1=new ArrayList<>();

listFromActivity1=this.getIntent().getExtras().getParcelableArrayList("StudentDetails");

if (listFromActivity1 != null) {

    Log.d("listis",""+listFromActivity1.toString());
}

我认为这是理解这个概念的基础。

答案 5 :(得分:3)

使用意图传递ArrayList的最简单方法

  1. 在依赖关系块build.gradle中添加此行。

    implementation 'com.google.code.gson:gson:2.2.4'
    
  2. 通过arraylist

    ArrayList<String> listPrivate = new ArrayList<>();
    
    
    Intent intent = new Intent(MainActivity.this, ListActivity.class);
    intent.putExtra("private_list", new Gson().toJson(listPrivate));
    startActivity(intent);
    
  3. 检索另一个活动中的列表

    ArrayList<String> listPrivate = new ArrayList<>();
    
    Type type = new TypeToken<List<String>>() {
    }.getType();
    listPrivate = new Gson().fromJson(getIntent().getStringExtra("private_list"), type);
    

您也可以使用object代替String类型

为我工作。

答案 6 :(得分:2)

如果您的班级问题仅包含原语 Serializeble String 字段,您可以实施他{{3 }}。 ArrayList实现 Serializable ,这就是为什么你可以像Serializable那样把它发送到另一个活动。 恕我直言,Parcelable - 这是很长的路。

答案 7 :(得分:2)

我在这个场景中做了两件事之一

  1. 为我的对象实现一个序列化/反序列化系统并将它们作为字符串传递(通常以JSON格式,但您可以按照自己喜欢的方式将它们序列化)

  2. 实现一个位于活动之外的容器,以便我的所有活动都可以读取和写入此容器。您可以将此容器设置为静态或使用某种依赖注入来检索每个活动中的相同实例。

  3. Parcelable工作得很好,但是我总觉得它看起来很难看,如果你在模型之外编写自己的序列化代码,它并没有真正添加任何不存在的值。

答案 8 :(得分:1)

您可以使用意图捆绑将arraylist从一个活动传递到另一个活动。 请使用以下代码 这是传递arraylist

的最短和最合适的方法

bundle.putStringArrayList(&#34;关键字&#34;,数组列表);

答案 9 :(得分:1)

您必须还需要实现Parcelable接口,除了Serializable之外,还必须在构造函数中使用Parcel参数将writeToParcel方法添加到Questions类中。否则应用程序将崩溃。

答案 10 :(得分:1)

你的arrayList:

ArrayList<String> yourArray = new ArrayList<>();

从您想要的地方写下此代码:

Intent newIntent = new Intent(this, NextActivity.class);
newIntent.putExtra("name",yourArray);
startActivity(newIntent);

在下一个活动中:

ArrayList<String> myArray = new ArrayList<>();

将此代码写入onCreate:

myArray =(ArrayList<String>)getIntent().getSerializableExtra("name");

答案 11 :(得分:1)

我发现大多数答案有效,但带有警告。因此,在没有任何警告的情况下,我有一个巧妙的方法来实现这一目标。

ArrayList<Question> questionList = new ArrayList<>();
...
Intent intent = new Intent(CurrentActivity.this, ToOpenActivity.class);
for (int i = 0; i < questionList.size(); i++) {
    Question question = questionList.get(i);
    intent.putExtra("question" + i, question);
}
startActivity(intent);

现在进入第二活动

ArrayList<Question> questionList = new ArrayList<>();

Intent intent = getIntent();
int i = 0;
while (intent.hasExtra("question" + i)){
    Question model = (Question) intent.getSerializableExtra("question" + i);
    questionList.add(model);
    i++;
}

注意: 在您的Question类中实现Serializable。

答案 12 :(得分:1)

如果Question实施Parcelable

,您的意图创建似乎是正确的

在下一个活动中,您可以检索如下问题列表:

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    if(getIntent() != null && getIntent().hasExtra("QuestionsExtra")) {
        List<Question> mQuestionsList = getIntent().getParcelableArrayListExtra("QuestionsExtra");
    }
}

答案 13 :(得分:0)

您可以使用parcelable进行对象传递,这比Serializable更有效。

请参考我所分享的链接包含完整的parcelable样本。 Click download ParcelableSample.zip

答案 14 :(得分:0)

//arraylist/Pojo you can Pass using bundle  like this 
Intent intent = new Intent(MainActivity.this, SecondActivity.class);
Bundle args = new Bundle();
                        args.putSerializable("imageSliders",(Serializable)allStoriesPojo.getImageSliderPojos());
                        intent.putExtra("BUNDLE",args);
 startActivity(intent); 


Get SecondActivity like this
  Intent intent = getIntent();
        Bundle args = intent.getBundleExtra("BUNDLE");
String filter = bundle.getString("imageSliders");

//Happy coding

答案 15 :(得分:0)

就这么简单!为我工作

来自活动

Matrix([[3], [6], [12], [24]])

TO活动

        Intent intent = new Intent(Viewhirings.this, Informaall.class);
        intent.putStringArrayListExtra("list",nselectedfromadapter);

        startActivity(intent);

答案 16 :(得分:0)

要设置Kotlin中的数据

val offerIds = ArrayList<Offer>()
offerIds.add(Offer(1))
retrunIntent.putExtra(C.OFFER_IDS, offerIds)

获取数据

 val offerIds = data.getSerializableExtra(C.OFFER_IDS) as ArrayList<Offer>?

现在访问阵列列表

答案 17 :(得分:0)

  

实施Parcelable ,并以 putParcelableArrayListExtra 发送数组列表,并从下一个活动 中获取它getParcelableArrayListExtra

示例:

对自定义类实施可包裹化-(Alt + enter)实现其方法

public class Model implements Parcelable {

private String Id;

public Model() {

}

protected Model(Parcel in) {
    Id= in.readString();       
}

public static final Creator<Model> CREATOR = new Creator<Model>() {
    @Override
    public ModelcreateFromParcel(Parcel in) {
        return new Model(in);
    }

    @Override
    public Model[] newArray(int size) {
        return new Model[size];
    }
};

public String getId() {
    return Id;
}

public void setId(String Id) {
    this.Id = Id;
}


@Override
public int describeContents() {
    return 0;
}

@Override
public void writeToParcel(Parcel dest, int flags) {
    dest.writeString(Id);
}
}

通过活动1传递类对象

 Intent intent = new Intent(Activity1.this, Activity2.class);
            intent.putParcelableArrayListExtra("model", modelArrayList);
            startActivity(intent);

从Activity2中获取更多好处

if (getIntent().hasExtra("model")) {
        Intent intent = getIntent();
        cartArrayList = intent.getParcelableArrayListExtra("model");

    } 

答案 18 :(得分:-2)

我有完全相同的问题,虽然仍在讨论Parcelable,但我发现静态变量对于任务来说并不是一个坏主意。

您只需创建一个

即可
public static ArrayList<Parliament> myObjects = .. 

并通过MyRefActivity.myObjects

从其他地方使用它

我不确定公共静态变量在具有活动的应用程序的上下文中意味着什么。如果您对此方法或此方法的性能方面也有疑问,请参阅:

干杯。