How i can pass Array List from one Activity to another my array list is shown as follows
ArrayList>
You can use a Bundle to pass elements from one Activity to another.
Check this out: http://developer.android.com/reference/android/os/Bundle.html
You create the Bundle, put it into the Intent, and then on the new activity, you get it and extract the elements you need.
It goes like this:
Bundle b = new Bundle();
String s = "hello";
b.putString("example", s);
intent.putExtras(b);
and then on the new activity:
Bundle b = this.getIntent().getExtras();
String s = b.getString("example");