diff options
author | uabdullah <uabdullah@google.com> | 2018-03-08 14:24:43 -0800 |
---|---|---|
committer | Copybara-Service <copybara-piper@google.com> | 2018-03-08 17:04:58 -0800 |
commit | 98ff44d0b311e4b659c61f7e78807c3f233fe1f9 (patch) | |
tree | 002bbee0a7442539c62a55f09080c1b6e23cb9aa | |
parent | 6b4f264f40a2b3386c4cd1d8134a8d821be94052 (diff) |
Add divider line to nui voicemail alert
Adds a divider line to differentiate the voicemail entries and the alerts.
Bug: 73158572
Test: N/A
PiperOrigin-RevId: 188389442
Change-Id: I33bd32fc310cdf52f20bcb2d0b2cd4266420cab6
-rw-r--r-- | java/com/android/dialer/voicemail/listui/res/layout/new_voicemail_entry_alert.xml | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/java/com/android/dialer/voicemail/listui/res/layout/new_voicemail_entry_alert.xml b/java/com/android/dialer/voicemail/listui/res/layout/new_voicemail_entry_alert.xml index 28d639118..18a368647 100644 --- a/java/com/android/dialer/voicemail/listui/res/layout/new_voicemail_entry_alert.xml +++ b/java/com/android/dialer/voicemail/listui/res/layout/new_voicemail_entry_alert.xml @@ -96,14 +96,11 @@ android:textColor="@color/dialer_theme_color"/> </LinearLayout> - <LinearLayout - android:layout_width="0dip" - android:layout_height="match_parent" - android:layout_weight="1" - android:layout_gravity="center" - android:divider="?android:dividerHorizontal" - android:gravity="center" - android:orientation="vertical" - android:showDividers="middle"> - </LinearLayout> + <View + xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="match_parent" + android:layout_height="1dp" + android:layout_marginTop="8dp" + android:layout_marginBottom="8dp" + android:background="#12000000"/> </LinearLayout> |