欧美一区二区三区老妇人-欧美做爰猛烈大尺度电-99久久夜色精品国产亚洲a-亚洲福利视频一区二区

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

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

目前創(chuàng)新互聯(lián)公司已為1000+的企業(yè)提供了網(wǎng)站建設、域名、虛擬空間、網(wǎng)站改版維護、企業(yè)網(wǎng)站設計、桐柏網(wǎng)站維護等服務,公司將堅持客戶導向、應用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶和合作伙伴齊心協(xié)力一起成長,共同發(fā)展。

效果圖:

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

1.輸入一個圖片url

2.轉換成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)絡下載圖片
          downLoadPicture(path);
        }
      }

      private void downLoadPicture(final String path) {
        // 子線程請求網(wǎng)絡
        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();
      }
    });
  }

}

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。

當前題目:android網(wǎng)絡圖片查看器簡單實現(xiàn)代碼
網(wǎng)頁路徑:http://chinadenli.net/article20/giohjo.html

成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供微信小程序面包屑導航、網(wǎng)站維護做網(wǎng)站、關鍵詞優(yōu)化域名注冊

廣告

聲明:本網(wǎng)站發(fā)布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經(jīng)允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯(lián)

營銷型網(wǎng)站建設