summaryrefslogtreecommitdiff
path: root/java/com/android/dialer/voicemail/listui/res/layout/new_voicemail_entry_alert.xml
diff options
context:
space:
mode:
authoruabdullah <uabdullah@google.com>2018-01-08 13:32:21 -0800
committerCopybara-Service <copybara-piper@google.com>2018-01-08 17:10:29 -0800
commit0dcfaa21bf1ffc1d99524907469f73dde3e54e42 (patch)
tree6e44935c4503b1314ead2e7f9acb068060385e33 /java/com/android/dialer/voicemail/listui/res/layout/new_voicemail_entry_alert.xml
parent15d15cf079f8dc6fc810ed0fec7cd9a0d446b316 (diff)
Initial setup of voicemail error messages
This CL setups the initial adapter logic to be able to display voicemail error messages. The errors and the code to display those errors will be shown in a follow up CL. Bug: 71700117 Test: N/A PiperOrigin-RevId: 181210330 Change-Id: I5b9e9e675ad7a4825692fb93ca4237d05b0407f0
Diffstat (limited to 'java/com/android/dialer/voicemail/listui/res/layout/new_voicemail_entry_alert.xml')
-rw-r--r--java/com/android/dialer/voicemail/listui/res/layout/new_voicemail_entry_alert.xml30
1 files changed, 30 insertions, 0 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
new file mode 100644
index 000000000..e8dcd02d6
--- /dev/null
+++ b/java/com/android/dialer/voicemail/listui/res/layout/new_voicemail_entry_alert.xml
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+ ~ Copyright (C) 2017 The Android Open Source Project
+ ~
+ ~ Licensed under the Apache License, Version 2.0 (the "License");
+ ~ you may not use this file except in compliance with the License.
+ ~ You may obtain a copy of the License at
+ ~
+ ~ http://www.apache.org/licenses/LICENSE-2.0
+ ~
+ ~ Unless required by applicable law or agreed to in writing, software
+ ~ distributed under the License is distributed on an "AS IS" BASIS,
+ ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ ~ See the License for the specific language governing permissions and
+ ~ limitations under the License
+ -->
+<RelativeLayout
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:height="48dp"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content">
+ <!-- TODO(uabdullah): Confirm with UX on mocks -->
+ <TextView
+ android:id="@+id/new_voicemail_alert_text"
+ style="@style/SecondaryText"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_marginStart="@dimen/voicemail_header_margin_start"
+ android:layout_centerVertical="true"/>
+</RelativeLayout>