我有一个基本的个人资料屏幕,有一些TextViews和一个ImageView,由一个绑定到资源文件中每个View的模型备份。
我创建了一个BindingAdapter
,它将从模型中读取配置文件图像作为Base64Encoded字符串,并将其放入ImageView。
我的问题是,当用户点击保存时,如何将ImageView中的Bitmap绑定到User模型上的属性?目前,所有文本字段都已正确发送,但我不确定如何在ImageView中处理Bitmap。
这是我的资源布局文件:
<?xml version="1.0" encoding="utf-8"?>
<layout>
<data>
<variable name="user" type="Models.User" />
<variable name="viewActions" type="ViewModel.ProfileViewModel" />
</data>
<LinearLayout xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:gravity="center_horizontal|top">
<ProgressBar
android:id="@+id/progressPostUser"
android:layout_width="120dp"
android:layout_height="120dp"
android:visibility="gone"/>
<include layout="@layout/main_toolbar"/>
<ImageView
android:id="@+id/imagePlaceHolder"
android:layout_width="250dp"
android:layout_height="150dp"
android:layout_marginTop="20dp"
android:layout_marginBottom="5dp"
android:imageBitmap="@{user._profileImage}"/>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="10dp">
<ImageButton
android:id="@+id/btnOpenCamera"
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_marginRight="10dp"
android:src="@mipmap/ic_account"
android:onClick="@{(view) -> viewActions.OnCamerarClicked(view)}"/>
<ImageButton
android:id="@+id/btnChooseImage"
android:layout_width="50dp"
android:layout_height="50dp"
android:src="@mipmap/ic_view_list"/>
</LinearLayout>
<EditText
android:layout_width="250dp"
android:layout_height="50dp"
android:hint="Name"
android:text="@={user._name}"/>
<EditText
android:layout_width="250dp"
android:layout_height="50dp"
android:hint="Surname"
android:text="@={user._surname}"/>
<EditText
android:layout_width="250dp"
android:layout_height="50dp"
android:hint="Email"
android:text="@={user._email}"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Save"
android:onClick="@{() -> viewActions.onSaveClicked(user)}"/>
</LinearLayout>
这是click事件,我想从ImageView接收Bitmap。如上所述,此处收到所有TextView文本值:
public void onSaveClicked(User user) {
try {
PostParams postParam = new PostParams();
postParam.setmPostObject(user);
postParam.setmUrl(new URL("http://blahblah.com/AddUser"));
new AsyncTaskPost(mProfiler).execute(postParam);
}
catch (Exception ex) {
Log.d("ProfileViewModel", ex.getMessage());
}
}
最后,我的User.java
模型。
public class User extends BaseObservable {
public User() {
}
private String _name = "";
@Bindable
public String get_name() {
return _name;
}
public void set_name(String _name) {
this._name = _name;
notifyPropertyChanged(BR._name);
}
private String _surname = "";
@Bindable
public String get_surname() {
return _surname;
}
public void set_surname(String _surname) {
this._surname = _surname;
notifyPropertyChanged(BR._surname);
}
private String _email = "";
@Bindable
public String get_email() {
return _email;
}
public void set_email(String _email) {
this._email = _email;
notifyPropertyChanged(BR._email);
}
private Bitmap _profileImage;
public Bitmap get_profileImage() {
return _profileImage;
}
public void set_profileImage(Bitmap _profileImage) {
this._profileImage = _profileImage;
}
public String toJsonString(){
JSONObject jObject = new JSONObject();
try{
jObject.put("Name", get_name());
jObject.put("Surname", get_surname());
jObject.put("Email", get_email());
jObject.put("ProfileImage", Base64.encodeToString(convertBitmapToBytes(), Base64.DEFAULT));
} catch (Exception ex){
Log.d("Error", "User.toJson");
}
return jObject.toString();
}
@Override
public String toString() {
return super.toString();
}
private byte[] convertBitmapToBytes(){
ByteArrayOutputStream stream = new ByteArrayOutputStream();
//get_profileImage().compress(Bitmap.CompressFormat.PNG, 100, stream);
return stream.toByteArray();
}
}