In general, there is an ArrayList list that implements the Model . How to transfer such a list to intent . There seems to be only for ArrayList<String> .

    1 answer 1

     class Model implements Serializable { ... } 

    And now you can put this ArrayList<Model>

    Get it like this:
    ArrayList<Model> modelList = (ArrayList<Model>)intent.getSerializableExtra ("name");

    • And then how will it stretch out? - user186301
    • @ user186301, updated the answer - Vladyslav Matviienko