[Solved] displaying images Gallery from assets/images

The question is not clear, if you want to load a single image from assets, then you can do it this way. //read image from asset InputStream is = getAssets().open(“image.jpg”); // create a drawable Drawable drawable = Drawable.createFromStream(is, null); //find reference to your imageview and set drawable ImageView i=(ImageView)findViewById(R.id.image_id); i.setImageDrawable(drawable); 2 solved displaying images Gallery … Read more

[Solved] Display picture in gallery [closed]

You could look into UIImagePickerController should only take a short time to implement and easy to get the image the user picks but you cannot change the appearance or extend the functionality. https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIImagePickerController_Class/ EDIT: Due to my misunderstanding. This GitHub has a very good and easy solution for simply displaying an image in a full … Read more