diff options
author | Chris Wren <cwren@android.com> | 2012-05-14 10:05:42 -0400 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2012-05-15 07:01:53 -0700 |
commit | 66757217a6d8e6a156d15be55bf77940e2e6194b (patch) | |
tree | 9d3fc51fdc853efa213dff4549da3164575a4cdf /packages/SystemUI/res/layout | |
parent | e9e3772534f6410005ae3a61c415e71ac093e732 (diff) | |
download | frameworks_base-66757217a6d8e6a156d15be55bf77940e2e6194b.zip frameworks_base-66757217a6d8e6a156d15be55bf77940e2e6194b.tar.gz frameworks_base-66757217a6d8e6a156d15be55bf77940e2e6194b.tar.bz2 |
Create separate dimensions for the notificaitons and notification rows.
Use notification heights on layouts internal to the notificaitons.
Use row heights where padding needs to be protected, on row layout decisions.
Clean up values-xhdpi/dimens.xml since there is no longer a values-hdpi/dimens.xml.
Bug: 6475098
Bug: 6489095
Change-Id: I44750574c6e23336585a432a38c5f1ba183b6cbc
Diffstat (limited to 'packages/SystemUI/res/layout')
-rw-r--r-- | packages/SystemUI/res/layout/status_bar_expanded.xml | 4 | ||||
-rw-r--r-- | packages/SystemUI/res/layout/system_bar_notification_panel.xml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/packages/SystemUI/res/layout/status_bar_expanded.xml b/packages/SystemUI/res/layout/status_bar_expanded.xml index bc144bb..4cff67b 100644 --- a/packages/SystemUI/res/layout/status_bar_expanded.xml +++ b/packages/SystemUI/res/layout/status_bar_expanded.xml @@ -48,7 +48,7 @@ android:id="@+id/latestItems" android:layout_width="match_parent" android:layout_height="wrap_content" - systemui:rowHeight="@dimen/notification_height" + systemui:rowHeight="@dimen/notification_row_min_height" /> </ScrollView> @@ -68,4 +68,4 @@ </com.android.systemui.statusbar.phone.CloseDragHandle> -</FrameLayout><!-- end of sliding panel -->
\ No newline at end of file +</FrameLayout><!-- end of sliding panel --> diff --git a/packages/SystemUI/res/layout/system_bar_notification_panel.xml b/packages/SystemUI/res/layout/system_bar_notification_panel.xml index 42af147..5579505 100644 --- a/packages/SystemUI/res/layout/system_bar_notification_panel.xml +++ b/packages/SystemUI/res/layout/system_bar_notification_panel.xml @@ -77,7 +77,7 @@ android:clickable="true" android:focusable="true" android:descendantFocusability="afterDescendants" - systemui:rowHeight="@dimen/notification_height" + systemui:rowHeight="@dimen/notification_row_min_height" /> </ScrollView> </LinearLayout> |