[Settings] Add search icon in region picker

Bug: 38526548
Flag: EXEMPT refactor
Change-Id: I1016f5f812d8f0c43a2b3a899bd70b6672f44481
This commit is contained in:
Zoey Chen
2024-12-20 07:27:29 +00:00
parent 75cae48694
commit 0f76903817
6 changed files with 257 additions and 30 deletions

View File

@@ -16,6 +16,7 @@
package com.android.settings.localepicker;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import com.android.internal.app.LocaleStore;
@@ -25,5 +26,6 @@ import java.util.List;
public interface LocaleListSearchCallback {
/** Callback method for searching changes. */
void onSearchListChanged(@NonNull List<LocaleStore.LocaleInfo> localeInfoList);
void onSearchListChanged(@NonNull List<LocaleStore.LocaleInfo> localeInfoList,
@Nullable CharSequence prefix);
}