android ImageButton显示本地图片

荒凉一梦 提交于 2021-02-09 04:52:39

得到本地图片(png,jpeg,gif)的路径后,将图片显示在ImageButton上。这里先读出图片大小,在设置采样率,使得大图片也能一览全貌。

参考:android Bitmap学习总结

void foo(){
		String filepath = bundle.getString("path");
		Options opts = new Options();
		opts.inJustDecodeBounds = true;
		BitmapFactory.decodeFile(filepath, opts);
		int samp = LtUtil.getPictureSampleSize(
				opts.outWidth, opts.outHeight);
		opts.inJustDecodeBounds = false;
		opts.inSampleSize = samp;
		Bitmap bm = BitmapFactory
				.decodeFile(filepath, opts);
		if (bm != null) {
			pictureButton.setImageBitmap(bm);
		}
	}
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!