onActivityResult in RecyclerView.Adapter<MyAdapter.MyViewHolder>
问题 I tried to open gallery from my adapter. emp_photo_edit.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { Intent i = new Intent(Intent.ACTION_PICK,android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI); ((EmployeeActivity)context).startActivityForResult(i, 2017); } }); Then i want to show that choosen image into my imageview in my recycycleview , how to do that? Because i cant add onActivityResult on my adapter . Thanks in advance Edit My Full