最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

android網(wǎng)絡(luò)圖片查看器簡單實(shí)現(xiàn)代碼

 更新時間:2017年03月10日 10:34:31   作者:zhu6201976  
這篇文章主要為大家詳細(xì)介紹了android網(wǎng)絡(luò)圖片查看器的簡單實(shí)現(xiàn)代碼,具有一定的參考價值,感興趣的小伙伴們可以參考一下

本文實(shí)例為大家分享了android網(wǎng)絡(luò)圖片查看器的具體代碼,供大家參考,具體內(nèi)容如下

效果圖:

1.輸入一個圖片url

2.轉(zhuǎn)換成bitmap位圖

3.展示到ImageView上

xml:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:tools="http://schemas.android.com/tools"
  android:id="@+id/activity_main"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:paddingBottom="@dimen/activity_vertical_margin"
  android:paddingLeft="@dimen/activity_horizontal_margin"
  android:paddingRight="@dimen/activity_horizontal_margin"
  android:paddingTop="@dimen/activity_vertical_margin"
  tools:context="com.itheima74.internetpicturelook.MainActivity">

  <EditText
    android:id="@+id/et_url"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_alignParentStart="true"
    android:layout_alignParentTop="true"
    android:hint="請輸入圖片網(wǎng)址"
    android:inputType="textUri"
    android:text="http://b.hiphotos.baidu.com/image/pic/item/d009b3de9c82d15825ffd75c840a19d8bd3e42da.jpg" />

  <Button
    android:id="@+id/bt_look"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_below="@+id/et_url"
    android:text="查看圖片" />

  <ScrollView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@+id/bt_look"
    android:layout_centerHorizontal="true">

    <ImageView
      android:id="@+id/iv"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content" />
  </ScrollView>

</RelativeLayout>

java代碼:

package com.itheima74.internetpicturelook;

import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.EditText;
import android.widget.ImageView;
import android.widget.Toast;

import java.io.IOException;
import java.io.InputStream;
import java.net.HttpURLConnection;
import java.net.URL;

public class MainActivity extends AppCompatActivity {

  private EditText et_url;
  private ImageView iv;

  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    et_url = (EditText) findViewById(R.id.et_url);
    iv = (ImageView) findViewById(R.id.iv);
    findViewById(R.id.bt_look).setOnClickListener(new View.OnClickListener() {
      @Override
      public void onClick(View v) {
        String path = et_url.getText().toString().trim();
        if (path.isEmpty()) {
          Toast.makeText(MainActivity.this, "請輸入圖片網(wǎng)址", Toast.LENGTH_SHORT).show();
        } else {
          //開啟子線程去網(wǎng)絡(luò)下載圖片
          downLoadPicture(path);
        }
      }

      private void downLoadPicture(final String path) {
        // 子線程請求網(wǎng)絡(luò)
        new Thread() {
          @Override
          public void run() {
            try {
              URL url = new URL(path);
              HttpURLConnection connection = (HttpURLConnection) url.openConnection();
              connection.setRequestMethod("GET");
              connection.setConnectTimeout(5000);
              int responseCode = connection.getResponseCode();
              if (responseCode == 200) {
                InputStream inputStream = connection.getInputStream();
                final Bitmap bitmap = BitmapFactory.decodeStream(inputStream);
                // 主線程更新UI
                runOnUiThread(new Runnable() {
                  @Override
                  public void run() {
                    iv.setImageBitmap(bitmap);
                  }
                });
              }
            } catch (IOException e) {
              e.printStackTrace();
            }
          }
        }.start();
      }
    });
  }

}

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

  • kotlin開發(fā)cli工具小技巧詳解

    kotlin開發(fā)cli工具小技巧詳解

    這篇文章主要為大家介紹了kotlin開發(fā)cli工具小技巧詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪
    2022-12-12
  • ExpandableListView實(shí)現(xiàn)二級列表購物車

    ExpandableListView實(shí)現(xiàn)二級列表購物車

    這篇文章主要為大家詳細(xì)介紹了ExpandableListView實(shí)現(xiàn)二級列表購物車,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2018-11-11
  • Android微信第三方登錄(個人筆記)

    Android微信第三方登錄(個人筆記)

    這篇文章主要為大家詳細(xì)介紹了Android微信第三方登錄的具體過程,個人筆記分享,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2016-12-12
  • 使用Glide實(shí)現(xiàn)高斯模糊效果

    使用Glide實(shí)現(xiàn)高斯模糊效果

    這篇文章主要為大家詳細(xì)介紹了使用Glide實(shí)現(xiàn)高斯模糊效果,文中示例代碼介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2020-12-12
  • Android之軟鍵盤自動彈出和關(guān)閉【代碼分享】

    Android之軟鍵盤自動彈出和關(guān)閉【代碼分享】

    本文主要介紹了Android中軟鍵盤自動彈出和關(guān)閉的相關(guān)知識。具有很好的參考價值。下面跟著小編一起來看下吧
    2017-04-04
  • Android用ActionBar高仿微信主界面的實(shí)例代碼

    Android用ActionBar高仿微信主界面的實(shí)例代碼

    這篇文章主要介紹了Android用ActionBar高仿微信主界面的實(shí)例代碼,小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧
    2018-05-05
  • Android復(fù)制assets文件到SD卡

    Android復(fù)制assets文件到SD卡

    這篇文章主要為大家詳細(xì)介紹了Android復(fù)制assets文件到SD卡的方法,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2018-12-12
  • Android shape標(biāo)簽使用方法介紹

    Android shape標(biāo)簽使用方法介紹

    shape算是我們常用的一個標(biāo)簽,他可以生成線條,矩形, 圓形, 圓環(huán),像我們圓角的按鈕就可以通過shape來實(shí)現(xiàn),最終Android會把這個帶有shape標(biāo)簽的圖片解析成一個Drawable對象,這個Drawable對象本質(zhì)是GradientDrawable
    2022-09-09
  • Flutter改變狀態(tài)變量是否必須寫在setState回調(diào)詳解

    Flutter改變狀態(tài)變量是否必須寫在setState回調(diào)詳解

    這篇文章主要為大家介紹了Flutter改變狀態(tài)變量是否必須寫在setState回調(diào)里的原理詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪
    2022-11-11
  • 深入學(xué)習(xí)Android中的Intent

    深入學(xué)習(xí)Android中的Intent

    深入學(xué)習(xí)Android中的Intent,Intent提供了一種通用的消息系統(tǒng),它允許在你的應(yīng)用程序見傳遞Intent來執(zhí)行動作和產(chǎn)生事件,對Intent感興趣的小伙伴們可以參考一下
    2015-12-12

最新評論

伊宁市| 兰考县| 盐城市| 济宁市| 吕梁市| 南通市| 淮阳县| 兴仁县| 奇台县| 晋宁县| 富宁县| 修文县| 平湖市| 五河县| 旌德县| 如东县| 永靖县| 志丹县| 如皋市| 舟曲县| 龙海市| 镇平县| 德化县| 白朗县| 阳朔县| 晋江市| 桃园市| 昭觉县| 临颍县| 萍乡市| 宜良县| 温宿县| 长寿区| 策勒县| 佛冈县| 宜章县| 连云港市| 汝州市| 大荔县| 探索| 夹江县|