Add split-pane UI for create group screen.

This commit is contained in:
jeffrey-signal
2025-10-22 14:30:24 -04:00
committed by Greyson Parrelli
parent d763baa270
commit d6446d2954
9 changed files with 607 additions and 68 deletions

View File

@@ -147,6 +147,11 @@ public final class ContactFilterView extends FrameLayout {
ViewUtil.focusAndShowKeyboard(searchText);
}
public void setText(String text) {
searchText.setText(text);
searchText.setSelection(text.length());
}
public void clear() {
searchText.setText("");
notifyListener();