I have a List in one of my activity. I need to pass it to another activity and use the elements in it.
ActivityOne.java
newsListy.add(new News(title, description, thumbnail);
      Intent newsIntent = new Intent(getActivity(),Second.class);
                    newsIntent.putExtra("NewsItems", newsListy);
startActivity(newsIntent);
Second.class
data =  in.getSerializableExtra("NewsItems");
Also, retrive value from the list and assign it to a String title, description and thumbnail
 
     
    