The code
SngList.setOnItemClickListener(new OnItemClickListener() {
public void onItemClick(AdapterView a, View v, int position, long id) {
In
To get the arraylist from another activity.
ArrayList list = new ArrayList();
list= getIntent().getStringArrayListExtra("Data1");
To pass the arraylist to another activity.
intent.putStringArrayListExtra("Data1", Songinfo);
To split the array list:
for(SongDetails name: list)
{
String yoursong= name.song;
}
Hope this will give you some solution.