summaryrefslogtreecommitdiffstats
path: root/res/layout
diff options
context:
space:
mode:
authorFabrice Di Meglio <fdimeglio@google.com>2014-07-21 20:24:22 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2014-07-19 22:40:06 +0000
commit193cd11c4b52e313422b74fec46c792aec9a9c06 (patch)
tree99286ad13a7c63022841a9ced90ab3286b60229e /res/layout
parent592a17aa3c1c88b576a1b342135fcf3f566bd9e4 (diff)
parent7bc9c1bce3593a01f261a537a5edbb264316aa1c (diff)
downloadpackages_apps_Settings-193cd11c4b52e313422b74fec46c792aec9a9c06.zip
packages_apps_Settings-193cd11c4b52e313422b74fec46c792aec9a9c06.tar.gz
packages_apps_Settings-193cd11c4b52e313422b74fec46c792aec9a9c06.tar.bz2
Merge "Fix App Notification layout for tabletUI support" into lmp-dev
Diffstat (limited to 'res/layout')
-rw-r--r--res/layout/notification_app.xml6
-rw-r--r--res/layout/notification_app_list.xml5
2 files changed, 7 insertions, 4 deletions
diff --git a/res/layout/notification_app.xml b/res/layout/notification_app.xml
index 6818a45..9442de6 100644
--- a/res/layout/notification_app.xml
+++ b/res/layout/notification_app.xml
@@ -15,7 +15,9 @@
-->
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
- android:layout_height="wrap_content" >
+ android:layout_height="wrap_content"
+ android:paddingStart="?android:attr/listPreferredItemPaddingStart"
+ android:paddingEnd="?android:attr/listPreferredItemPaddingEnd">
<RelativeLayout
android:id="@android:id/button1"
@@ -23,7 +25,7 @@
android:layout_height="wrap_content"
android:layout_alignWithParentIfMissing="true"
android:layout_toStartOf="@+id/settings_divider"
- android:background="?android:attr/listChoiceBackgroundIndicator" >
+ android:background="?android:attr/listChoiceBackgroundIndicator">
<ImageView
android:id="@android:id/icon"
diff --git a/res/layout/notification_app_list.xml b/res/layout/notification_app_list.xml
index 2c5ab40..f680e38 100644
--- a/res/layout/notification_app_list.xml
+++ b/res/layout/notification_app_list.xml
@@ -18,13 +18,14 @@
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
- android:orientation="vertical"
- android:paddingStart="?android:attr/listPreferredItemPaddingStart">
+ android:orientation="vertical">
<ListView
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="match_parent"
+ android:paddingStart="@dimen/settings_side_margin"
+ android:paddingEnd="@dimen/settings_side_margin"
android:divider="#0000"
android:dividerHeight="0px"
android:fastScrollAlwaysVisible="true"