How can I display image in Android Application

本秂侑毒 提交于 2019-11-28 10:13:06
Bharat Sharma

First you need to create an imageview.

ImageView imageView = new ImageView(getApplicationContext());

Create layout param to add imageview on layout

LayoutParams lp = new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);

Then get your image path

String path = Environment.getExternalStorageDirectory() + "/your folder name/image_name.bmp";

Set your image on ImageView

Bitmap image = BitmapFactory.decodeFile(path);
imageView.setImageBitmap(image);

Fetch your layout on which you want to add

RelativeLayout rl = (RelativeLayout) findViewById(R.id.relativeLayout1);

Add your view to the layout

rl.addView(imageView, lp);

You can use the below code snippet to load image in imageview .

ImageView iv = new ImageView(this);
iv.setImageUri(Uri.parse("file://loaction"));

you can use the above sample method to display image in image from sd card. Even dont hard code the file path use Environment.getExternalEnvironment() to get path.

Environment.getExternalStorageDirectory() + "/folder/filename.ext";

if no internal folder use below

 Environment.getExternalStorageDirectory() + "/filename.ext";
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!