中文字幕日韩精品一区二区免费_精品一区二区三区国产精品无卡在_国精品无码专区一区二区三区_国产αv三级中文在线

Android中子線程網(wǎng)絡(luò)查看器與Handler消息處理器-創(chuàng)新互聯(lián)

xml文件代碼部分

成都創(chuàng)新互聯(lián)是一家專業(yè)提供豐都企業(yè)網(wǎng)站建設(shè),專注與網(wǎng)站建設(shè)、成都網(wǎng)站制作、H5技術(shù)、小程序制作等業(yè)務(wù)。10年已為豐都眾多企業(yè)、政府機(jī)構(gòu)等服務(wù)。創(chuàng)新互聯(lián)專業(yè)網(wǎng)站設(shè)計(jì)公司優(yōu)惠進(jìn)行中。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
	android:orientation="vertical"
 >

    <ImageView
        android:id="@+id/p_w_picpath"
        android:layout_width="fill_parent"
        android:layout_height="0dip"
        android:layout_weight="1"
         />
    <LinearLayout 
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        >
        <EditText 
            android:id="@+id/edit"
            android:layout_width="0dip"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:singleLine="true"
            android:text="https://cache.yisu.com/upload/information/20200311/46/199580.jpg"
            />
        <Button 
            android:id="@+id/go"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Go"
            android:textSize="20sp"
            />
    </LinearLayout>

</LinearLayout>

Activity

package com.example.android01;

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

import android.app.Activity;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ImageView;
import android.widget.Toast;


public class MainActivity extends Activity implements OnClickListener {
	private ImageView p_w_picpath;
	private EditText edit;
	private Button but;
	private final int success=0;
	private Handler handler=new Handler(){
		@Override
		public void handleMessage(android.os.Message msg) {
			Bitmap b=(Bitmap)msg.obj;
			if(b!=null)
			{
				if(msg.what==success)
				{
			p_w_picpath.setImageBitmap(b);
				}
			}else{
				Toast.makeText(getApplicationContext(), "獲取圖片錯(cuò)誤", 0).show();
			}
			
		};
	};

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        p_w_picpath=(ImageView) findViewById(R.id.p_w_picpath);
        edit=(EditText) findViewById(R.id.edit);
        but=(Button) findViewById(R.id.go);
        but.setOnClickListener(this);
    }

	@Override
	public void onClick(View v) {
		final String url=edit.getText().toString();
		new Thread(new Runnable() {
			
			@Override
			public void run() {
				Bitmap bit=getImageFromNet(url);
//				p_w_picpath.setImageBitmap(bit);
				Message msg=new Message();
				msg.obj=bit;
				msg.what=success;
				handler.sendMessage(msg);
			}
		}).start();
		
	}

	private Bitmap getImageFromNet(String url){
		 HttpURLConnection conn=null;
		
		try {
			URL mURL=new URL(url);//創(chuàng)建一個(gè)URL連接
			 conn=(HttpURLConnection) mURL.openConnection();//得到一個(gè)connection對象
			conn.setRequestMethod("GET");//設(shè)置請求方法為GET
			conn.setConnectTimeout(10000);//設(shè)置連接超時(shí)時(shí)間
			conn.setReadTimeout(5000);//設(shè)置讀取過程中的異常
			conn.connect();
			int responseCode=conn.getResponseCode();//獲取響應(yīng)碼,404,500,200
			if(responseCode==200){
				//訪問成功
				InputStream in=conn.getInputStream();
			Bitmap bitmap=	BitmapFactory.decodeStream(in);//將從服務(wù)器獲取的流變成Bitmap位圖
			return bitmap;
			}else{
				Toast.makeText(this, "獲取圖片失敗", 0).show();
			}
			
			
		} catch (Exception e) {
			e.printStackTrace();
		}finally{
			if(conn!=null)
			{
				conn.disconnect();
			}
		}
		return null;
	}

  
}

另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。

當(dāng)前題目:Android中子線程網(wǎng)絡(luò)查看器與Handler消息處理器-創(chuàng)新互聯(lián)
分享鏈接:http://www.rwnh.cn/article34/ccghpe.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供用戶體驗(yàn)、品牌網(wǎng)站設(shè)計(jì)、營銷型網(wǎng)站建設(shè)、靜態(tài)網(wǎng)站企業(yè)建站、外貿(mào)建站

廣告

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

h5響應(yīng)式網(wǎng)站建設(shè)
汶上县| 临江市| 黑山县| 靖远县| 灵丘县| 江津市| 金山区| 河津市| 元氏县| 安丘市| 堆龙德庆县| 凤凰县| 古丈县| 阳曲县| 西昌市| 宁陵县| 巩留县| 黔西县| 万荣县| 马公市| 洪江市| 漳州市| 沐川县| 凤阳县| 巨野县| 侯马市| 丰顺县| 河津市| 克什克腾旗| 汉中市| 永定县| 响水县| 五华县| 临沧市| 花莲市| 城步| 巩义市| 呼和浩特市| 广州市| 扶余县| 红原县|