Get Image URL from Fresco SimpleDraweeView.
I have recyclerView items with EditText and SimpleDraweeView, also have on the button on my activity. on button click, I want to get whole recyclerview items data into ArrayList.
Here is the code which written on button click and i successfully got editText data except SimpleDraweeView URL.
ArrayList<ContactUs> getContactUsArrayList = new ArrayList<>();
for (int i = 0; i < getContactUsArrayList.size(); i++) {
View view = rvContact.getChildAt(i);
EditText etName = (EditText) view.findViewById(R.id.etName);
EditText etMobile = (EditText) view.findViewById(R.id.etMobile);
SimpleDraweeView sdvImage = (SimpleDraweeView) view.findViewById(R.id.sdvImage);
String strName = etName.getText().toString();
String strNumber = etMobile.getText().toString();
String strImgUrl = ""; //what is the property?
}
What is the property for getting URL from SimpleDraweeView?