I am struck in recyclerView,

Here the name and balance fields are coming from two different a
You can get value at action done of keyboard. all you need is to set
android:imeOptions="actionDone"
in edit text. and then just use below code
adepositEditText.setOnEditorActionListener(new TextView.OnEditorActionListener() {
@Override
public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
if (actionId == EditorInfo.IME_ACTION_DONE) {
// Do whatever you want here
return true;
}
return false;
});