Displaying Multiple Camera Images To Grid View
i want to display multiple images capture by camera to Grid view. i go through many questions how to do but non perfectly work for me. i use This to implement. but using this i am
Solution 1:
Use the comment provided in the answer in this link:
showing camera capture image to gridview
This should serve your purpose. Hope this helps. Let me know if you face any issues
You maintain a list out the onActivityResult. Initialize the list as a class variable means
ArrayList<Contact> imageArry = new ArrayList<Contact>();
add this line after class definition when you declare your variables. That should make you add multiple images
Post a Comment for "Displaying Multiple Camera Images To Grid View"