Home
last modified time | relevance | path

Searched refs:EXTRA_EXPAND_SEARCH_VIEW (Results 1 – 2 of 2) sorted by relevance

/packages/apps/Settings/tests/robotests/src/com/android/settings/applications/manageapplications/
DManageApplicationsTest.java511 assertThat(bundle.containsKey(ManageApplications.EXTRA_EXPAND_SEARCH_VIEW)).isFalse(); in onSaveInstanceState_noSearchView_shouldNotSetBundleValue()
527 assertThat(bundle.containsKey(ManageApplications.EXTRA_EXPAND_SEARCH_VIEW)).isTrue(); in onSaveInstanceState_searchViewSet_shouldSetBundleValue()
528 assertThat(bundle.getBoolean(ManageApplications.EXTRA_EXPAND_SEARCH_VIEW)).isFalse(); in onSaveInstanceState_searchViewSet_shouldSetBundleValue()
/packages/apps/Settings/src/com/android/settings/applications/manageapplications/
DManageApplications.java211 static final String EXTRA_EXPAND_SEARCH_VIEW = "expand_search_view"; field in ManageApplications
389 mExpandSearch = activity.getIntent().getBooleanExtra(EXTRA_EXPAND_SEARCH_VIEW, false); in onCreate()
396 mExpandSearch = savedInstanceState.getBoolean(EXTRA_EXPAND_SEARCH_VIEW); in onCreate()
609 outState.putBoolean(EXTRA_EXPAND_SEARCH_VIEW, !mSearchView.isIconified()); in onSaveInstanceState()