本篇文章給大家分享的是有關(guān)Android中怎么顯示網(wǎng)絡(luò)圖片,小編覺得挺實(shí)用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
創(chuàng)新互聯(lián)堅(jiān)持“要么做到,要么別承諾”的工作理念,服務(wù)領(lǐng)域包括:成都網(wǎng)站建設(shè)、網(wǎng)站設(shè)計(jì)、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣等服務(wù),滿足客戶于互聯(lián)網(wǎng)時(shí)代的京口網(wǎng)站設(shè)計(jì)、移動(dòng)媒體設(shè)計(jì)的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡(luò)建設(shè)合作伙伴!
Android顯示網(wǎng)絡(luò)圖片Step1:
1、創(chuàng)建你的Activity,本例中以ViewWebImageActivity說明;
2、ViewWebImageActivity中的代碼如下:
String imageUrl = "http://hiphotos.baidu.com/baidu/pic
/item/7d8aebfebf3f9e125c6008d8.jpg";//這就是你需要顯示的網(wǎng)絡(luò)圖片---網(wǎng)上隨便找的
Bitmap bmImg;
ImageView imView;
Button button1;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
imView = (ImageView) findViewById(R.id.imview);
imView.setImageBitmap(returnBitMap(imageUrl));
}
public Bitmap returnBitMap(String url) {
URL myFileUrl = null;
Bitmap bitmap = null;
try {
myFileUrl = new URL(url);
} catch (MalformedURLException e) {
e.printStackTrace();
}
try {
HttpURLConnection conn = (HttpURLConnection)
myFileUrl.openConnection();conn.setDoInput(true);
conn.connect();
InputStream is = conn.getInputStream();
bitmap = BitmapFactory.decodeStream(is);
is.close();
} catch (IOException e) {
e.printStackTrace();
}
return bitmap;
}
3、其中,returnBitMap(String url) 方法就是具體實(shí)現(xiàn)網(wǎng)絡(luò)圖片轉(zhuǎn)換成bitmap。
Android顯示網(wǎng)絡(luò)圖片Step2:
1、修改你的main.xml文件如下:
< ?xml version="1.0" encoding="utf-8"?>
< LinearLayout xmlns:android=
"http://schemas.android.com/apk/res/android"android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
< ImageView
android:id="@+id/imview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
/>
< /LinearLayout>
Android顯示網(wǎng)絡(luò)圖片Step3:
在你的AndroidManifest.xml文件的< /manifest>節(jié)點(diǎn)上面添加< uses-permission android:name="android.permission.INTERNET" />,這是由于Android有很多的權(quán)限限制,否則圖片是不能在你的模擬器上顯示的。
以上就是Android中怎么顯示網(wǎng)絡(luò)圖片,小編相信有部分知識(shí)點(diǎn)可能是我們?nèi)粘9ぷ鲿?huì)見到或用到的。希望你能通過這篇文章學(xué)到更多知識(shí)。更多詳情敬請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。