android ImageButton显示本地图片
生活随笔
收集整理的這篇文章主要介紹了
android ImageButton显示本地图片
小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
2019獨(dú)角獸企業(yè)重金招聘Python工程師標(biāo)準(zhǔn)>>>
得到本地圖片(png,jpeg,gif)的路徑后,將圖片顯示在ImageButton上。這里先讀出圖片大小,在設(shè)置采樣率,使得大圖片也能一覽全貌。
參考:android Bitmap學(xué)習(xí)總結(jié)
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);}}轉(zhuǎn)載于:https://my.oschina.net/walk273/blog/129945
總結(jié)
以上是生活随笔為你收集整理的android ImageButton显示本地图片的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: 解决xcode打开时假死的问题
- 下一篇: Exchange安装