如何自定义我的 RecyclerView 适配器以直接为发件人显示图像视图?
How to customzie my RecyclerView Adapter to show the ImageView directly for the sender?
我正在开发一个 Android/Firebase 发送图像的聊天应用程序。
在画廊意图之后,我在 onActivityResult 中获取 Uri,并将其分配给 activity 中的 public Uri。
我的问题是,如何自定义 RecyclerView 适配器以直接为发件人显示图像,而无需等待图像上传到 Firebase 然后检索它?
尝试在适配器中的发件人绑定中使用 Picasso 和 if 语句设置图像:if(theUri != null)
我正在开发一个 Android/Firebase 发送图像的聊天应用程序。 在画廊意图之后,我在 onActivityResult 中获取 Uri,并将其分配给 activity 中的 public Uri。 我的问题是,如何自定义 RecyclerView 适配器以直接为发件人显示图像,而无需等待图像上传到 Firebase 然后检索它?
尝试在适配器中的发件人绑定中使用 Picasso 和 if 语句设置图像:if(theUri != null)