add system settings

Test: manually verified
Change-Id: Ie9c9b4ccea92a4601e4e0b9ff7f4bf75f8fef89a
diff --git a/src/com/android/car/settings/system/AboutSettingsActivity.java b/src/com/android/car/settings/system/AboutSettingsActivity.java
new file mode 100644
index 0000000..a2ea9ba
--- /dev/null
+++ b/src/com/android/car/settings/system/AboutSettingsActivity.java
@@ -0,0 +1,50 @@
+/*
+ * Copyright (C) 2017 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.car.settings.system;
+
+import android.os.Build;
+
+import com.android.car.settings.common.ListSettingsActivity;
+import com.android.car.settings.common.SimpleTextLineItem;
+import com.android.car.settings.common.TypedPagedListAdapter;
+import com.android.car.settings.R;
+import com.android.settingslib.DeviceInfoUtils;
+
+import java.util.ArrayList;
+
+/**
+ * Shows basic info about the system and provide some actions like update, reset etc.
+ */
+public class AboutSettingsActivity extends ListSettingsActivity {
+
+    @Override
+    public ArrayList<TypedPagedListAdapter.LineItem> getLineItems() {
+        ArrayList<TypedPagedListAdapter.LineItem> lineItems = new ArrayList<>();
+        lineItems.add(new SimpleTextLineItem(
+                getText(R.string.model_info), Build.MODEL + DeviceInfoUtils.getMsvSuffix()));
+        lineItems.add(new SimpleTextLineItem(
+                getText(R.string.firmware_version),
+                getString(R.string.about_summary, Build.VERSION.RELEASE)));
+        lineItems.add(new SimpleTextLineItem(
+                getText(R.string.security_patch), DeviceInfoUtils.getSecurityPatch()));
+        lineItems.add(new SimpleTextLineItem(
+                getText(R.string.kernel_version), DeviceInfoUtils.getFormattedKernelVersion()));
+        lineItems.add(new SimpleTextLineItem(
+                getText(R.string.build_number), Build.DISPLAY));
+        return lineItems;
+    }
+}
diff --git a/src/com/android/car/settings/system/AboutSystemLineItem.java b/src/com/android/car/settings/system/AboutSystemLineItem.java
new file mode 100644
index 0000000..0334540
--- /dev/null
+++ b/src/com/android/car/settings/system/AboutSystemLineItem.java
@@ -0,0 +1,54 @@
+/*
+ * Copyright (C) 2017 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.car.settings.system;
+
+import android.content.Context;
+import android.content.Intent;
+import android.os.Build;
+
+import com.android.car.settings.R;
+import com.android.car.settings.common.IconTextLineItem;
+
+
+/**
+ * A LineItem that displays info about system.
+ */
+class AboutSystemLineItem extends IconTextLineItem {
+
+    private final Context mContext;
+
+    public AboutSystemLineItem(Context context) {
+        super(context.getString(R.string.about_settings), R.drawable.ic_settings_about);
+        mContext = context;
+    }
+
+    @Override
+    public CharSequence getDesc() {
+        return mContext.getString(R.string.about_summary, Build.VERSION.RELEASE);
+    }
+
+    @Override
+    public boolean isEnabled() {
+        return true;
+    }
+
+    @Override
+    public void onClick() {
+        Intent intent = new Intent(mContext, AboutSettingsActivity.class);
+        mContext.startActivity(intent);
+    }
+}
diff --git a/src/com/android/car/settings/system/LegalInfoLineItem.java b/src/com/android/car/settings/system/LegalInfoLineItem.java
new file mode 100644
index 0000000..663d16b
--- /dev/null
+++ b/src/com/android/car/settings/system/LegalInfoLineItem.java
@@ -0,0 +1,51 @@
+/*
+ * Copyright (C) 2017 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.car.settings.system;
+
+import android.content.Context;
+
+import com.android.car.settings.R;
+import com.android.car.settings.common.IconTextLineItem;
+
+
+/**
+ * A LineItem that displays info about legal document.
+ */
+class LegalInfoLineItem extends IconTextLineItem {
+
+    private final Context mContext;
+
+    public LegalInfoLineItem(Context context) {
+        super(context.getString(R.string.legal_information), R.drawable.ic_settings_about);
+        mContext = context;
+    }
+
+    @Override
+    public CharSequence getDesc() {
+        return null;
+    }
+
+    @Override
+    public boolean isEnabled() {
+        return true;
+    }
+
+    @Override
+    public void onClick() {
+        // TODO: link to a legal info page.
+    }
+}
diff --git a/src/com/android/car/settings/system/SystemSettingsActivity.java b/src/com/android/car/settings/system/SystemSettingsActivity.java
new file mode 100644
index 0000000..37d1614
--- /dev/null
+++ b/src/com/android/car/settings/system/SystemSettingsActivity.java
@@ -0,0 +1,38 @@
+/*
+ * Copyright (C) 2017 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.car.settings.system;
+
+import com.android.car.settings.R;
+import com.android.car.settings.common.ListSettingsActivity;
+import com.android.car.settings.common.TypedPagedListAdapter;
+
+import java.util.ArrayList;
+
+/**
+ * Shows basic info about the system and provide some actions like update, reset etc.
+ */
+public class SystemSettingsActivity extends ListSettingsActivity {
+
+    @Override
+    public ArrayList<TypedPagedListAdapter.LineItem> getLineItems() {
+        ArrayList<TypedPagedListAdapter.LineItem> lineItems = new ArrayList<>();
+        lineItems.add(new SystemUpdatesLineItem(this));
+        lineItems.add(new AboutSystemLineItem(this));
+        lineItems.add(new LegalInfoLineItem(this));
+        return lineItems;
+    }
+}
diff --git a/src/com/android/car/settings/system/SystemUpdatesLineItem.java b/src/com/android/car/settings/system/SystemUpdatesLineItem.java
new file mode 100644
index 0000000..034b9df
--- /dev/null
+++ b/src/com/android/car/settings/system/SystemUpdatesLineItem.java
@@ -0,0 +1,53 @@
+/*
+ * Copyright (C) 2017 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.car.settings.system;
+
+import android.content.Context;
+
+import com.android.car.settings.R;
+import com.android.car.settings.common.IconTextLineItem;
+
+
+/**
+ * A LineItem that links to system update.
+ */
+class SystemUpdatesLineItem extends IconTextLineItem {
+    private static final String TAG = "SystemUpdatesLineItem";
+
+    private final Context mContext;
+
+    public SystemUpdatesLineItem(Context context) {
+        super(context.getString(
+                R.string.system_update_settings_list_item_title), R.drawable.ic_system_update);
+        mContext = context;
+    }
+
+    @Override
+    public CharSequence getDesc() {
+        return null;
+    }
+
+    @Override
+    public boolean isEnabled() {
+        return true;
+    }
+
+    @Override
+    public void onClick() {
+        // TODO: trigger system OTA flow
+    }
+}