Refactoring

pull/198/head
M66B 4 years ago
parent a2989fa27c
commit 0099c84d92

@ -3107,7 +3107,7 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
else else
context.startActivity(new Intent(context, ActivityBilling.class)); context.startActivity(new Intent(context, ActivityBilling.class));
} else if (id == R.id.ibSearchText) { } else if (id == R.id.ibSearchText) {
onMenuSearch(message); onSearchText(message);
} else if (id == R.id.ibSearch) { } else if (id == R.id.ibSearch) {
onSearchContact(message); onSearchContact(message);
} else if (id == R.id.ibAnswer) { } else if (id == R.id.ibAnswer) {
@ -4257,7 +4257,7 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
onMenuNotes(message); onMenuNotes(message);
return true; return true;
} else if (itemId == R.id.menu_search_in_text) { } else if (itemId == R.id.menu_search_in_text) {
onMenuSearch(message); onSearchText(message);
return true; return true;
} else if (itemId == R.id.menu_create_rule) { } else if (itemId == R.id.menu_create_rule) {
onMenuCreateRule(message); onMenuCreateRule(message);
@ -4677,7 +4677,7 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
fragment.show(parentFragment.getParentFragmentManager(), "edit:notes"); fragment.show(parentFragment.getParentFragmentManager(), "edit:notes");
} }
private void onMenuSearch(TupleMessageEx message) { private void onSearchText(TupleMessageEx message) {
LayoutInflater inflater = LayoutInflater.from(context); LayoutInflater inflater = LayoutInflater.from(context);
View dview = inflater.inflate(R.layout.popup_search_in_text, null, false); View dview = inflater.inflate(R.layout.popup_search_in_text, null, false);
EditText etSearch = dview.findViewById(R.id.etSearch); EditText etSearch = dview.findViewById(R.id.etSearch);

Loading…
Cancel
Save