diff options
| author | 2012-04-04 12:03:49 -0700 | |
|---|---|---|
| committer | 2012-04-04 12:03:49 -0700 | |
| commit | 74e642bae0eb504d106d97fd7c913739d0309cac (patch) | |
| tree | 3b1c757e81f9f0ffbce3e1786a223d7942269b34 | |
| parent | c3a6cf79e3ba65342a2f992bc730257a1656e501 (diff) | |
| parent | ea7593ce0f57387005aa2eada4ee3a4ccedd8102 (diff) | |
Merge "Fix vertical alignment of notification contents."
| -rw-r--r-- | core/res/res/layout/notification_template_base.xml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/res/res/layout/notification_template_base.xml b/core/res/res/layout/notification_template_base.xml index 5b0646070c05..93843fd7ad19 100644 --- a/core/res/res/layout/notification_template_base.xml +++ b/core/res/res/layout/notification_template_base.xml @@ -28,7 +28,7 @@ <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" - android:layout_gravity="center_vertical" + android:layout_gravity="fill_vertical" android:layout_marginLeft="@dimen/notification_large_icon_width" android:minHeight="@dimen/notification_large_icon_height" android:orientation="vertical" @@ -36,6 +36,7 @@ android:paddingRight="12dp" android:paddingTop="4dp" android:paddingBottom="4dp" + android:gravity="center_vertical" > <LinearLayout android:id="@+id/line1" |