用URL浏览图片

这篇博客介绍了如何在Android应用中实现从URL加载网络图片的功能。通过创建一个新线程进行网络请求,使用HttpURLConnection获取图片数据,然后利用BitmapFactory解码流并设置到ImageView上。同时,使用Handler更新主线程的UI。
摘要由CSDN通过智能技术生成
public class MainActivity extends Activity {
    private Button button =null;
    private ImageView image =null;
    private EditText edit =null;
    private Bitmap bitmap =null;//读取的网络图片
    private Handler handler =null;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        //初始化控件
        InitView();
        //添加按钮监听器
        button.setOnClickListener(new OnClickListener() {


            @Override
            public void onClick(View v) {
                // TODO Auto-generated method stub
                //启动线程和网络资源交互,并使用handler与主线程界面交互
                new Thread(new httprun()).start();
            }
        });
        //Handler
        handler =new Handler(){
            @Override
            public void handleMessage(Message msg) {
                // TODO Auto-generated method stub
                if(msg.what ==1){
                    image.setImageBitmap(bitmap);
                }
            }
        };


    }


    private void InitView() {
        // TODO Auto-generated method stub
        button=(Button)findViewById(R.id.btnView);
        image=(ImageView)findViewById(R.id.ivImage);
        edit=(EditText)findViewById(R.id.etImageUrl);
    }


    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }
    //访问网络图片的线程
    class httprun implements Runnable{
        @Override
        public void run() {
            // TODO Auto-generated method stub
            String str_url =edit.getText().toString().trim();
            if(str_url!=null) {
                try {
                    URL url =new URL(str_url);
                    HttpURLConnection hConnection =(HttpURLConnection) url.openConnection();//获得网络连接对象
                    hConnection.setConnectTimeout(5000);
                    hConnection.setRequestMethod("GET");
                    if(hConnection.getResponseCode() ==200){
                        InputStream in=hConnection.getInputStream();//获得输入流对象
                        //通过bitmap来封装图片
                        bitmap =BitmapFactory.decodeStream(in);
                        //通过handler通知主界面显示图片
                        handler.sendEmptyMessage(1);
                    }else {
                        Toast.makeText(MainActivity.this, "读取图片失败!", 1000).show();
                    }
                } catch (MalformedURLException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                } catch (IOException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }
            }else {
                Toast.makeText(MainActivity.this, "url不能为空!", 3000).show();
            }
        }
    }


}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值