Misc clean up in search

- Remove updateFromClassNameResource() because it's just a no-op method.
- Simplify SearchIndexResources
- Update some pref pages to have unique keys.

Change-Id: I51e542d9947aafd046861ce7be0b4c7213fcd01d
Fixes: 64951285
Test: UniquePreferenceKeyTest
Test: robotest
Bug: 67852637
This commit is contained in:
Fan Zhang
2017-10-26 15:56:41 -07:00
parent 73bce67552
commit 823dde54c7
57 changed files with 124 additions and 127 deletions

View File

@@ -14,21 +14,21 @@
limitations under the License.
-->
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:settings="http://schemas.android.com/apk/res/com.android.settings"
<PreferenceScreen
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:settings="http://schemas.android.com/apk/res/com.android.settings"
android:key="print_settings_screen"
android:title="@string/print_settings_title"
settings:keywords="@string/keywords_printing">
<PreferenceCategory
android:key="print_jobs_category"
android:title="@string/print_print_jobs"
android:order="0" />
<PreferenceCategory
android:key="print_services_category"
android:title="@string/print_settings_title"
settings:keywords="@string/keywords_printing">
<PreferenceCategory
android:key="print_jobs_category"
android:title="@string/print_print_jobs"
android:order="0">
</PreferenceCategory>
<PreferenceCategory
android:key="print_services_category"
android:title="@string/print_settings_title"
android:order="1">
</PreferenceCategory>
android:order="1" />
</PreferenceScreen>