summaryrefslogtreecommitdiff
path: root/java/com/android/dialer/voicemail/listui/res/layout/new_voicemail_entry_header.xml
diff options
context:
space:
mode:
authoruabdullah <uabdullah@google.com>2018-03-09 15:27:36 -0800
committerCopybara-Service <copybara-piper@google.com>2018-03-09 16:50:34 -0800
commit909073ecd295b7e31965ea9e614673b66e97dbbf (patch)
treef76747a8eab2d352712f3afef5f00bd1d735a2f7 /java/com/android/dialer/voicemail/listui/res/layout/new_voicemail_entry_header.xml
parentc7d8b13abe7641bb6058f05bcc46cd12d5798901 (diff)
Implement redlines for NUI VM Tab
Makes the redlines similar to what we have for the call log nui. The values are structured and copied as much as possible from /calllog/ui/res/layout/new_call_log_*.xml Things to note for: -Today/Older header the same as call log -More items all the way to the right -Padding in voicemail icon gone -Removed padding between each recycler view item Bug: 69963448 Test: N/A PiperOrigin-RevId: 188547442 Change-Id: I515d75e392591243510634c3fabe444a7ba10d7f
Diffstat (limited to 'java/com/android/dialer/voicemail/listui/res/layout/new_voicemail_entry_header.xml')
-rw-r--r--java/com/android/dialer/voicemail/listui/res/layout/new_voicemail_entry_header.xml10
1 files changed, 6 insertions, 4 deletions
diff --git a/java/com/android/dialer/voicemail/listui/res/layout/new_voicemail_entry_header.xml b/java/com/android/dialer/voicemail/listui/res/layout/new_voicemail_entry_header.xml
index 84fcc377e..7e4fe62cf 100644
--- a/java/com/android/dialer/voicemail/listui/res/layout/new_voicemail_entry_header.xml
+++ b/java/com/android/dialer/voicemail/listui/res/layout/new_voicemail_entry_header.xml
@@ -16,14 +16,16 @@
-->
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
- android:height="48dp"
+ android:minHeight="48dp"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/new_voicemail_header_text"
- style="@style/SecondaryText"
+ style="@style/SubHeader"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:layout_marginStart="@dimen/voicemail_header_margin_start"
- android:layout_centerVertical="true"/>
+ android:layout_marginStart="16dp"
+ android:layout_marginTop="8dp"
+ android:layout_centerVertical="true"
+ android:layout_gravity="center_vertical"/>
</RelativeLayout>