Merge "Car Settings Search Bar UI" into rvc-dev am: a0a1a9f9c3
Change-Id: Id1cf6a686ef43e238c1f8ec6d564338939c36a3f
diff --git a/Android.bp b/Android.bp
index fc8062a..26c946d 100644
--- a/Android.bp
+++ b/Android.bp
@@ -22,6 +22,7 @@
privileged: true,
required: ["privapp_whitelist_com.android.settings.intelligence"],
+ libs: ["android.car-stubs"],
static_libs: [
"androidx.legacy_legacy-support-v4",
"androidx.legacy_legacy-support-v13",
@@ -30,6 +31,7 @@
"androidx.preference_preference",
"androidx.recyclerview_recyclerview",
"androidx.legacy_legacy-preference-v14",
+ "car-ui-lib",
],
resource_dirs: ["res"],
srcs: [
diff --git a/OWNERS b/OWNERS
index 417ec58..620981f 100644
--- a/OWNERS
+++ b/OWNERS
@@ -1,7 +1,8 @@
## People who can approve changes
# Android auto
-rlagos@google.com
+rlagos@google.com # OWNER for SUW related code
+ericberglund@google.com # OWNER for Car Settings related code
# TV Settings
leifhendrik@google.com
diff --git a/res/values/themes.xml b/res/values/themes.xml
index 4e8ae4e..949b6dd 100644
--- a/res/values/themes.xml
+++ b/res/values/themes.xml
@@ -22,4 +22,6 @@
<item name="android:windowActionBar">false</item>
<item name="android:windowNoTitle">true</item>
</style>
+
+ <style name="Theme.CarSettings" parent="@style/Theme.CarUi.WithToolbar"/>
</resources>
\ No newline at end of file
diff --git a/res/xml/car_search_fragment.xml b/res/xml/car_search_fragment.xml
new file mode 100644
index 0000000..201c60a
--- /dev/null
+++ b/res/xml/car_search_fragment.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+ ~ Copyright (C) 2020 The Android Open Source Project
+ ~
+ ~ Licensed under the Apache License, Version 2.0 (the "License");
+ ~ you may not use this file except in compliance with the License.
+ ~ You may obtain a copy of the License at
+ ~
+ ~ http://www.apache.org/licenses/LICENSE-2.0
+ ~
+ ~ Unless required by applicable law or agreed to in writing, software
+ ~ distributed under the License is distributed on an "AS IS" BASIS,
+ ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ ~ See the License for the specific language governing permissions and
+ ~ limitations under the License.
+ -->
+
+<PreferenceScreen
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:settings="http://schemas.android.com/apk/res-auto"
+ android:title="@string/app_name_settings_intelligence"/>
diff --git a/src/com/android/settings/intelligence/search/CarSearchFragment.java b/src/com/android/settings/intelligence/search/CarSearchFragment.java
new file mode 100644
index 0000000..6b2f880
--- /dev/null
+++ b/src/com/android/settings/intelligence/search/CarSearchFragment.java
@@ -0,0 +1,90 @@
+/*
+ * Copyright (C) 2020 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.android.settings.intelligence.search;
+
+import static com.android.car.ui.core.CarUi.requireInsets;
+import static com.android.car.ui.core.CarUi.requireToolbar;
+
+import android.os.Bundle;
+
+import com.android.car.ui.preference.PreferenceFragment;
+import com.android.car.ui.toolbar.ToolbarController;
+import com.android.settings.intelligence.R;
+import com.android.car.ui.toolbar.MenuItem;
+import com.android.car.ui.toolbar.Toolbar;
+
+import java.util.Collections;
+import java.util.List;
+
+/**
+ * Search fragment for car settings
+ */
+public class CarSearchFragment extends PreferenceFragment {
+
+ private MenuItem mClearHistoryButton;
+
+ @Override
+ public void onCreatePreferences(Bundle savedInstanceState, String rootKey) {
+ setPreferencesFromResource(R.xml.car_search_fragment, rootKey);
+ }
+
+ protected ToolbarController getToolbar() {
+ return requireToolbar(requireActivity());
+ }
+
+ protected List<MenuItem> getToolbarMenuItems() {
+ return Collections.singletonList(mClearHistoryButton);
+ }
+
+ @Override
+ public void onCreate(Bundle savedInstanceState) {
+ super.onCreate(savedInstanceState);
+
+ mClearHistoryButton = new MenuItem.Builder(getContext())
+ .setTitle(R.string.search_clear_history)
+ .setDisplayBehavior(MenuItem.DisplayBehavior.NEVER)
+ .setOnClickListener(i -> onClearHistoryButtonClicked())
+ .build();
+ }
+
+ @Override
+ public void onActivityCreated(Bundle savedInstanceState) {
+ super.onActivityCreated(savedInstanceState);
+ ToolbarController toolbar = getToolbar();
+ if (toolbar != null) {
+ List<MenuItem> items = getToolbarMenuItems();
+ toolbar.setTitle(getPreferenceScreen().getTitle());
+ toolbar.setMenuItems(items);
+ toolbar.setNavButtonMode(Toolbar.NavButtonMode.BACK);
+ toolbar.setState(Toolbar.State.SUBPAGE);
+ toolbar.setState(Toolbar.State.SEARCH);
+ toolbar.setSearchHint(R.string.abc_search_hint);
+ toolbar.registerOnSearchListener(this::onQueryTextChange);
+ toolbar.setShowMenuItemsWhileSearching(true);
+ }
+ }
+
+ @Override
+ public void onStart() {
+ super.onStart();
+ onCarUiInsetsChanged(requireInsets(requireActivity()));
+ }
+
+ private void onQueryTextChange(String query) {}
+
+ private void onClearHistoryButtonClicked() {}
+}
diff --git a/src/com/android/settings/intelligence/search/SearchActivity.java b/src/com/android/settings/intelligence/search/SearchActivity.java
index 0f00a63..cd43644 100644
--- a/src/com/android/settings/intelligence/search/SearchActivity.java
+++ b/src/com/android/settings/intelligence/search/SearchActivity.java
@@ -20,6 +20,8 @@
import androidx.fragment.app.FragmentActivity;
import androidx.fragment.app.Fragment;
import androidx.fragment.app.FragmentManager;
+
+import android.content.pm.PackageManager;
import android.os.Bundle;
import android.view.WindowManager;
@@ -29,6 +31,11 @@
@Override
public void onCreate(Bundle savedInstanceState) {
+ if (isAutomotive()) {
+ // Automotive relies on a different theme. Apply before calling super so that
+ // fragments are restored properly on configuration changes.
+ setTheme(R.style.Theme_CarSettings);
+ }
super.onCreate(savedInstanceState);
setContentView(R.layout.search_main);
// Keeps layouts in-place when keyboard opens.
@@ -37,8 +44,10 @@
FragmentManager fragmentManager = getSupportFragmentManager();
Fragment fragment = fragmentManager.findFragmentById(R.id.main_content);
if (fragment == null) {
+ fragment = isAutomotive() ?
+ new CarSearchFragment() : new SearchFragment();
fragmentManager.beginTransaction()
- .add(R.id.main_content, new SearchFragment())
+ .add(R.id.main_content, fragment)
.commit();
}
}
@@ -48,4 +57,8 @@
finish();
return true;
}
+
+ private boolean isAutomotive() {
+ return getPackageManager().hasSystemFeature(PackageManager.FEATURE_AUTOMOTIVE);
+ }
}