how can I send a List into another activity in Android Studio
问题 I know that I can add a string or an integer by putting putextra() on my Intent but what do I do if I have to send a List? For example, My main activity contains a list, I have a different activity that adds an item into the list and I have a third activity that needs to show the whole list 回答1: Your object can also implement Parcelable interface. Then you can use Bundle.putParcelable() method and pass your object between activities within intent. Photostream application uses this approach