Android tutorial - image viewer for android - android app development - android studio - android development tutorial
What is Image View
- Android is enriched with some of the best User interface design widgets. That allows you to build robust and good looking ui based application.
- Image View is one of the UI widget that is used to display images in your Application. Image View is come with different configuration options to support different scale Types.
- In Android, you can use “android. widget. Image View” class to display an image file. Image file is easy to use but hard to master, because of the various screen and dpi in Android devices.
- In this tutorial, we didn’t go in deep about dpi and various screen issue, we just use ImageView to display a “png” image, when user click on a button, it will change to another “png” image.
Add Image to Resources
- Put your images into folder “res/drawable-ldpi“, “res/drawable-mdpi” or “res/drawable-hdpi“.
- See figure below, no matter which folder you put, Android will find your image automatically. In this case, both “android.png” and “android3d.png” images are used for Demo - android emulator - android tutorialnstration.
- Again, read official Android’s "Drawable Resource" and "Screen Support" article to understand what is dpi and resources in Android.
Add Image View
- Open “res/layout/main.xml” file, just add an ImageView and Button for Demo - android emulator - android tutorialnstration. By default, imageView1 will display “android.png”.
File : MyAndroidAppActivity.java
File : MyAndroidAppActivity.java Code
- Simple, when button is clicked, change it to “android3d.png”.
File : MyAndroidAppActivity.java
Demo - android development tutorial - android emulator - android tutorial
- Run the application.
- Result, “android.png” is displayed.
- Click on the button, image will changed to “android3d.png”.