currently i am working on a application in which i have to add images dynamically into a List View with click of camera , i have gone through from multiple examples but i am not getting answer. so please provide me the code or the link using that i can solve my problem. Every help will be appreciated.
Share
Giving Some idea how you can achieve this :
Write Camera Code Function() which should return Bitmap
Create a Bitmap type list ArrayList Camera_Image_List = new ArrayList();
Create your Custom List view which having image and some other control if you want like
Call Camera Code Function() when user wants to snap & add bitmap in Camera_Image_List which is return by function.
Task over