OkHttp3网络加载Bitmap到DataBinding中BindingAdapter自定义属性

简介: OkHttp3网络加载Bitmap到DataBinding中BindingAdapter自定义属性定义User:import android.

OkHttp3网络加载Bitmap到DataBinding中BindingAdapter自定义属性


定义User:

import android.databinding.BaseObservable;
import android.databinding.ObservableField;
import android.graphics.Bitmap;

public class User extends BaseObservable {
    public ObservableField<Bitmap> bitmap = new ObservableField<>();
}


在XML布局中写入User:

<layout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto">

    <data>

        <variable
            name="user"
            type="com.example.fly.myapplication.User" />
    </data>

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <ImageView
            android:id="@+id/image"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            app:userImage="@{user.bitmap}" />
    </RelativeLayout>
</layout>
其中的app:userImage为自己专门为ImageView自定义的属性。

下面单独为userImage属性增加绑定。Utils.java:

import android.databinding.BindingAdapter;
import android.graphics.Bitmap;
import android.widget.ImageView;

public class Utils {
    @BindingAdapter({"userImage"})
    public static void setImageError(ImageView imageView, Bitmap bitmap) {
        imageView.setImageBitmap(bitmap);
    }
}


接着在上层Java代码使用Okhttp3加载一个网络图片到ImageView的userImage中去:

import android.databinding.DataBindingUtil;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;

import java.io.IOException;

import okhttp3.Call;
import okhttp3.Callback;
import okhttp3.OkHttpClient;
import okhttp3.Request;
import okhttp3.Response;

public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        ActivityMainBinding binding = DataBindingUtil.setContentView(this, R.layout.activity_main);

        final User user = new User();
        binding.setUser(user);

        String url = "http://avatar.csdn.net/9/7/A/1_zhangphil.jpg";

        OkHttpClient client = new OkHttpClient();
        Request request = new Request.Builder()
                .url(url)
                .build();

        client.newCall(request).enqueue(new Callback() {
            @Override
            public void onFailure(Call call, IOException e) {

            }

            @Override
            public void onResponse(Call call, Response response) throws IOException {
                byte[] bytes = response.body().bytes();
                Bitmap bitmap = BitmapFactory.decodeByteArray(bytes, 0, bytes.length);
                user.bitmap.set(bitmap);
            }
        });
    }
}



.gradle添加的okhttp3引用:

implementation 'com.squareup.okhttp3:okhttp:3.9.1'

相关文章
|
3月前
|
机器学习/深度学习 PyTorch 算法框架/工具
目标检测实战(一):CIFAR10结合神经网络加载、训练、测试完整步骤
这篇文章介绍了如何使用PyTorch框架,结合CIFAR-10数据集,通过定义神经网络、损失函数和优化器,进行模型的训练和测试。
182 2
目标检测实战(一):CIFAR10结合神经网络加载、训练、测试完整步骤
|
4天前
|
Ubuntu Linux 开发者
Ubuntu20.04搭建嵌入式linux网络加载内核、设备树和根文件系统
使用上述U-Boot命令配置并启动嵌入式设备。如果配置正确,设备将通过TFTP加载内核和设备树,并通过NFS挂载根文件系统。
32 15
|
10天前
|
存储 JSON 缓存
【网络原理】——HTTP请求头中的属性
HTTP请求头,HOST、Content-Agent、Content-Type、User-Agent、Referer、Cookie。
|
5月前
|
移动开发 TensorFlow 算法框架/工具
只保存和加载网络权重
【8月更文挑战第21天】只保存和加载网络权重。
38 2
|
2月前
|
缓存 JavaScript
Vue加载网络组件(远程组件)
【10月更文挑战第23天】在 Vue 中实现加载网络组件(远程组件)可以通过多种方式来完成。
|
3月前
|
Docker 容器
docker中创建自定义网络
【10月更文挑战第7天】
72 6
|
3月前
|
安全 NoSQL Redis
Docker自定义网络
Docker自定义网络
45 11
|
3月前
|
Docker 容器
docker中自定义网络
【10月更文挑战第5天】
48 3
|
4月前
|
Shell Linux Docker
自定义Docker网络
这篇文章介绍了如何使用Docker命令自定义网络,并通过创建和配置网络来实现容器间的通信。
46 6
自定义Docker网络
|
5月前
|
缓存
Flutter Image从网络加载图片刷新、强制重新渲染
Flutter Image从网络加载图片刷新、强制重新渲染
162 1

热门文章

最新文章