[Solved] How to add Images Dynamically in a List View With the click of camera [closed]


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

solved How to add Images Dynamically in a List View With the click of camera [closed]