summaryrefslogtreecommitdiffstats
path: root/res/layout
diff options
context:
space:
mode:
authorJason Monk <jmonk@google.com>2015-03-26 11:05:38 -0400
committerJason Monk <jmonk@google.com>2015-03-27 10:43:05 -0400
commit46c55104384a9138d51c18c24114885af842afde (patch)
tree24ad4d4dd7a9dfe989947893dbbcf71c8483138c /res/layout
parent024f373dc0a90cbd4b513a1cf1dcf8a6c248dc49 (diff)
downloadandroid_packages_apps_PackageInstaller-46c55104384a9138d51c18c24114885af842afde.tar.gz
android_packages_apps_PackageInstaller-46c55104384a9138d51c18c24114885af842afde.tar.bz2
android_packages_apps_PackageInstaller-46c55104384a9138d51c18c24114885af842afde.zip
Update permissions UI
- Update existing settings page to show action bar and app header. - Add page to manage apps based on permission. Change-Id: I2211044fbe4db4b4fbf981f1a7ad7a01666cd69d
Diffstat (limited to 'res/layout')
-rw-r--r--res/layout/header.xml62
1 files changed, 62 insertions, 0 deletions
diff --git a/res/layout/header.xml b/res/layout/header.xml
new file mode 100644
index 00000000..f9b27af6
--- /dev/null
+++ b/res/layout/header.xml
@@ -0,0 +1,62 @@
+<!--
+ Copyright (C) 2015 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.
+-->
+
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="match_parent"
+ android:layout_height="?android:attr/actionBarSize"
+ android:background="@drawable/header_background"
+ android:gravity="center_vertical"
+ android:theme="@style/Theme.Header.Settings" >
+
+ <ImageView android:id="@+id/icon"
+ android:layout_width="@dimen/header_subsettings_margin_start"
+ android:layout_height="40dp"
+ android:gravity="end"
+ android:layout_centerVertical="true" />
+
+ <TextView
+ android:id="@+id/name"
+ android:layout_height="wrap_content"
+ android:layout_width="match_parent"
+ android:layout_toStartOf="@+id/app_settings"
+ android:layout_marginStart="@dimen/header_subsettings_margin_start"
+ android:layout_alignWithParentIfMissing="true"
+ android:layout_centerVertical="true"
+ android:textAppearance="@android:style/TextAppearance.Material.Medium"
+ android:textColor="@android:color/white"
+ android:textAlignment="viewStart" />
+
+ <ImageView
+ android:id="@+id/info"
+ android:layout_width="56dp"
+ android:layout_height="56dp"
+ android:layout_alignParentEnd="true"
+ android:layout_marginEnd="@dimen/header_subsettings_margin_end"
+ android:layout_centerVertical="true"
+ android:minHeight="0dp"
+ android:minWidth="0dp"
+ android:scaleType="center"
+ android:src="@drawable/ic_info"
+ style="?android:attr/borderlessButtonStyle" />
+
+ <View
+ android:id="@+id/row_divider"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:background="?android:attr/listDivider" />
+
+</RelativeLayout>
+