Bring AppOps into OmniGears
Change-Id: Ifa0cfc563862c0e96407f410831ff604bff473c2
diff --git a/res/drawable/ic_settings_appops.xml b/res/drawable/ic_settings_appops.xml
new file mode 100644
index 0000000..ec9fb71
--- /dev/null
+++ b/res/drawable/ic_settings_appops.xml
@@ -0,0 +1,12 @@
+?xml version="1.0" encoding="utf-8"?>
+<vector xmlns:android="http://schemas.android.com/apk/res/android"
+ android:width="24dp"
+ android:height="24dp"
+ android:viewportWidth="24.0"
+ android:viewportHeight="24.0"
+ android:tint="?android:attr/colorControlNormal">
+ <path
+ android:fillColor="#FFFFFFFF"
+ android:pathData="M12,1L3,5v6c0,5.55 3.84,10.74 9,12 5.16,-1.26 9,-6.45 9,-12L21,5l-9,-4zM12,11.99h7c-0.53,4.12
+-3.28,7.79 -7,8.94L12,12L5,12L5,6.3l7,-3.11v8.8z"/>
+</vector>
diff --git a/res/layout/preference_appops.xml b/res/layout/preference_appops.xml
new file mode 100644
index 0000000..87c264a
--- /dev/null
+++ b/res/layout/preference_appops.xml
@@ -0,0 +1,60 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2014 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.
+-->
+
+<LinearLayout
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:id="@+id/dashboard_tile"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:background="?android:attr/selectableItemBackground"
+ android:gravity="center_vertical"
+ android:minHeight="@dimen/dashboard_tile_minimum_height"
+ android:clickable="true"
+ android:focusable="true">
+
+ <ImageView
+ android:src="@drawable/ic_settings_appops"
+ android:layout_width="@dimen/dashboard_tile_image_size"
+ android:layout_height="@dimen/dashboard_tile_image_size"
+ android:scaleType="centerInside"
+ android:layout_marginStart="@dimen/dashboard_tile_image_margin"
+ android:layout_marginEnd="@dimen/dashboard_tile_image_margin" />
+
+ <LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:orientation="vertical">
+
+ <TextView android:id="@android:id/title"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:singleLine="true"
+ android:textAppearance="@style/TextAppearance.TileTitle"
+ android:ellipsize="marquee"
+ android:fadingEdge="horizontal" />
+
+ <TextView android:id="@android:id/summary"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:textAppearance="@style/TextAppearance.Small"
+ android:textColor="?android:attr/textColorSecondary"
+ android:maxLines="1"
+ android:ellipsize="end"
+ android:paddingEnd="@dimen/dashboard_tile_image_margin" />
+
+ </LinearLayout>
+
+</LinearLayout>
diff --git a/res/values/custom_strings.xml b/res/values/custom_strings.xml
index aebb9e7..3028747 100644
--- a/res/values/custom_strings.xml
+++ b/res/values/custom_strings.xml
@@ -832,4 +832,7 @@
<string name="burn_in_protection_interval_title">Interval of shift</string>
<string name="burn_in_protection_interval_summary">How often to make icons shift</string>
+ <!-- AppOps -->
+ <string name="app_ops_settings_title">App Ops</string>
+
</resources>
diff --git a/res/xml/omni_dashboard_fragment.xml b/res/xml/omni_dashboard_fragment.xml
index d4262b7..507d32a 100644
--- a/res/xml/omni_dashboard_fragment.xml
+++ b/res/xml/omni_dashboard_fragment.xml
@@ -60,6 +60,16 @@
android:icon="@drawable/ic_settings_leds"
android:fragment="org.omnirom.omnigears.batterylight.BatteryLightSettings" />
+ <!-- AppOps -->
+ <Preference
+ android:key="app_ops_settings"
+ android:title="@string/app_ops_settings_title"
+ android:layout="@layout/preference_appops">
+ <intent android:action="android.intent.action.MAIN"
+ android:targetPackage="com.android.settings"
+ android:targetClass="com.android.settings.applications.appops.AppOpsSummary" />
+ </Preference>
+
<Preference
android:key="omnijaws_settings"
android:icon="@drawable/ic_qs_weather_default_on"