HomeSort by relevance Sort by last modified time
    Searched full:searchview (Results 26 - 50 of 329) sorted by null

12 3 4 5 6 7 8 91011>>

  /cts/tests/tests/widget/res/layout/
searchview_layout.xml 25 <SearchView
30 <SearchView
  /developers/samples/android/content/LoaderCursor/src/com/example/android/content/loadercursor/
MainActivity.java 24 import android.widget.SearchView;
30 * {@link SearchView} ActionBar item.
  /developers/samples/android/ui/actionbarcompat/ActionBarCompat-SearchView/src/main/
AndroidManifest.xml 18 package="com.example.android.actionbarcompat.searchview"
23 ActionBarCompat provides an Action Bar with compatible SearchView
  /development/samples/training/ContactsList/res/menu/
contact_list_menu.xml 19 <!-- The search menu item. Honeycomb and above uses an ActionView or specifically a SearchView
27 android:actionViewClass="android.widget.SearchView"/>
  /frameworks/support/v7/appcompat/src/androidTest/res/layout/
appcompat_searchview_activity.xml 25 <androidx.appcompat.widget.SearchView
30 <androidx.appcompat.widget.SearchView
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/
completion1-expected-completion11.txt 36 <SearchView ></SearchView>
completion1-expected-completion12.txt 36 <SearchView ></SearchView>
completion9-expected-completion64.txt 36 <SearchView ></SearchView>
  /developers/samples/android/content/contacts/BasicContactables/
template-params.xml 54 <android>android.widget.SearchView</android>
62 This sample shows how to search for contacts, displaying a SearchView in the Action Bar for user input and implementing a query Cursor with CommonDataKinds.Contactables.
68 This sample displays a [SearchView][1] in the Action Bar when the search icon is clicked. It then implements the [LoaderManager.LoaderCallbacks][2] interface to query the contacts table, using a [CursorLoader][3].
70 For details on how to implement the [SearchView][1], refer to the training guide [Setting up the search interface][4].
76 [1]: http://developer.android.com/reference/android/widget/SearchView.html
README.md 5 This sample shows how to search for contacts, displaying a SearchView in the Action Bar for user input and implementing a query Cursor with CommonDataKinds.Contactables.
10 This sample displays a [SearchView][1] in the Action Bar when the search icon is clicked. It then implements the [LoaderManager.LoaderCallbacks][2] interface to query the contacts table, using a [CursorLoader][3].
12 For details on how to implement the [SearchView][1], refer to the training guide [Setting up the search interface][4].
18 [1]: http://developer.android.com/reference/android/widget/SearchView.html
  /packages/apps/DocumentsUI/res/menu/
activity.xml 18 <!-- showAsAction flag impacts the behavior of SearchView.
19 When set to collapseActionView, collapsing SearchView to icon is the
20 default behavior. It would fit UX, however after expanding SearchView is
22 prevent this behavior was found, the flag is set to always. SearchView is
31 android:actionViewClass="android.widget.SearchView"
  /packages/apps/Dialer/java/com/android/dialer/app/widget/
SearchEditTextLayout.java 49 private EditText searchView;
91 searchView = (EditText) expanded.findViewById(R.id.search_view);
100 // forwarded to the searchView. This accelerates the long-press scenario for copy/paste.
111 searchView.onTouchEvent(event);
115 searchView.setOnFocusChangeListener(
127 searchView.setOnClickListener(
137 searchView.addTextChangedListener(
156 searchView.setText(null);
240 searchView.requestFocus();
285 if (TextUtils.isEmpty(searchView.getText()))
    [all...]
  /frameworks/support/samples/Support4Demos/src/main/java/com/example/android/supportv4/app/
LoaderRetainedSupport.java 30 import android.widget.SearchView;
105 SearchView searchView = new SearchView(getActivity());
106 searchView.setOnQueryTextListener(new SearchView.OnQueryTextListener() {
131 item.setActionView(searchView);
  /cts/tests/tests/widget/src/android/widget/cts/
SearchView_CursorTest.java 44 import android.widget.SearchView;
56 * Test {@link SearchView} with {@link Cursor}-backed suggestions adapter.
63 private SearchView mSearchView;
71 protected class MyQueryTextListener implements SearchView.OnQueryTextListener {
121 protected class MySuggestionListener implements SearchView.OnSuggestionListener {
149 mSearchView = (SearchView) mActivity.findViewById(R.id.search_view);
172 final SearchView.OnQueryTextListener mockQueryTextListener =
192 final SearchView.OnSuggestionListener mockSuggestionListener =
196 final SearchView.OnQueryTextListener mockQueryTextListener =
  /cts/hostsidetests/theme/app/res/layout/
searchview.xml 16 <SearchView xmlns:android="http://schemas.android.com/apk/res/android"
  /cts/hostsidetests/theme/app/res/values/
strings.xml 41 <string name="searchview">SearchView</string>
42 <string name="searchview_query">SearchView Query</string>
43 <string name="searchview_query_hint">SearchView Query Hint</string>
  /developers/build/prebuilts/gradle/BasicContactables/.google/
packaging.yaml 17 - android:android.widget.SearchView
  /developers/build/prebuilts/gradle/BasicContactables/
README.md 5 This sample shows how to search for contacts, displaying a SearchView in the Action Bar for user input and implementing a query Cursor with CommonDataKinds.Contactables.
10 This sample displays a [SearchView][1] in the Action Bar when the search icon is clicked. It then implements the [LoaderManager.LoaderCallbacks][2] interface to query the contacts table, using a [CursorLoader][3].
12 For details on how to implement the [SearchView][1], refer to the training guide [Setting up the search interface][4].
18 [1]: http://developer.android.com/reference/android/widget/SearchView.html
  /developers/samples/android/content/LoaderCursor/res/menu/
main.xml 21 android:actionViewClass="android.widget.SearchView"
  /developers/samples/android/ui/actionbarcompat/ActionBarCompat-SearchView/src/main/res/layout/
activity_main.xml 21 android:name="com.example.android.actionbarcompat.searchview.AppListFragment" />
  /development/samples/ApiDemos/res/layout/
search_view.xml 17 <SearchView xmlns:android="http://schemas.android.com/apk/res/android"
  /frameworks/support/v7/appcompat/src/androidTest/java/androidx/appcompat/widget/
SearchView_CursorTest.java 55 * Test {@link SearchView} with {@link Cursor}-backed suggestions adapter.
62 private SearchView mSearchView;
70 protected class MyQueryTextListener implements SearchView.OnQueryTextListener {
104 protected class MySuggestionListener implements SearchView.OnSuggestionListener {
132 mSearchView = (SearchView) mActivity.findViewById(R.id.search_view);
153 final SearchView.OnQueryTextListener mockQueryTextListener =
173 final SearchView.OnSuggestionListener mockSuggestionListener =
177 final SearchView.OnQueryTextListener mockQueryTextListener =
  /development/samples/SearchableDictionary/src/com/example/android/searchabledict/
SearchableDictionary.java 34 import android.widget.SearchView;
137 SearchView searchView = (SearchView) menu.findItem(R.id.search).getActionView();
138 searchView.setSearchableInfo(searchManager.getSearchableInfo(getComponentName()));
139 searchView.setIconifiedByDefault(false);
  /development/samples/ApiDemos/src/com/example/android/apis/app/
LoaderCursor.java 37 import android.widget.SearchView;
38 import android.widget.SearchView.OnCloseListener;
40 import android.widget.SearchView.OnQueryTextListener;
69 // The SearchView for doing filtering.
70 SearchView mSearchView;
100 public static class MySearchView extends SearchView {
105 // The normal SearchView doesn't clear its search text when
LoaderRetained.java 39 import android.widget.SearchView;
41 import android.widget.SearchView.OnCloseListener;
42 import android.widget.SearchView.OnQueryTextListener;
71 // The SearchView for doing filtering.
72 SearchView mSearchView;
105 public static class MySearchView extends SearchView {
110 // The normal SearchView doesn't clear its search text when

Completed in 4877 milliseconds

12 3 4 5 6 7 8 91011>>