im follow this post to pass arraylist as parameter to another screen from here Passing a List from one Activity to another now i want to save arraylist in string after get what do i do???
String myvalue; Activity A :
ArrayList<String> list = new ArrayList<String>();
intent.putExtra("arraylist", list);
startActivity(intent);
Activity B:
ArrayList<String> list = getIntent().getSerializableExtra("arraylist");
how to save list in myvalue;
like myvalue=list;