summaryrefslogtreecommitdiffstats
path: root/res/layout/app_ops_summary.xml
diff options
context:
space:
mode:
authorDianne Hackborn <hackbod@google.com>2013-01-15 19:02:05 -0800
committerDianne Hackborn <hackbod@google.com>2013-01-15 19:20:19 -0800
commita522a8ef8233382bbd39308b7d5f2e26eed44d22 (patch)
treef0a85bd706514eca1aa2cd53b5812e10b2b51138 /res/layout/app_ops_summary.xml
parent6001a7b0d494ca7ecad3301a96f396c255a94c7b (diff)
downloadpackages_apps_Settings-a522a8ef8233382bbd39308b7d5f2e26eed44d22.zip
packages_apps_Settings-a522a8ef8233382bbd39308b7d5f2e26eed44d22.tar.gz
packages_apps_Settings-a522a8ef8233382bbd39308b7d5f2e26eed44d22.tar.bz2
Quick and dirty UI for viewing app op information.
Change-Id: If17bfbe84cf438ca9bb37bf446564f39de99cee1
Diffstat (limited to 'res/layout/app_ops_summary.xml')
-rw-r--r--res/layout/app_ops_summary.xml43
1 files changed, 43 insertions, 0 deletions
diff --git a/res/layout/app_ops_summary.xml b/res/layout/app_ops_summary.xml
new file mode 100644
index 0000000..2073a00
--- /dev/null
+++ b/res/layout/app_ops_summary.xml
@@ -0,0 +1,43 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+/*
+**
+** Copyright 2013, 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:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:orientation="vertical">
+
+ <android.support.v4.view.ViewPager
+ android:id="@+id/pager"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:layout_weight="1">
+ <android.support.v4.view.PagerTabStrip
+ android:id="@+id/tabs"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_gravity="top"
+ android:textAppearance="@style/TextAppearance.PagerTabs"
+ android:paddingLeft="@dimen/pager_tabs_padding"
+ android:paddingRight="@dimen/pager_tabs_padding">
+ </android.support.v4.view.PagerTabStrip>
+ </android.support.v4.view.ViewPager>
+
+</LinearLayout>