summaryrefslogtreecommitdiff
path: root/java/com/android/dialer/app/voicemail/error/res/layout/voicemail_error_message_fragment.xml
diff options
context:
space:
mode:
authorSailesh Nepal <sail@google.com>2017-03-16 20:19:43 +0000
committerSailesh Nepal <sail@google.com>2017-03-16 20:19:43 +0000
commit2df4538eb90b896be15eebc1d9adf1206131c8a3 (patch)
treeb54abbb51fb7d66e7755a1fbb5db023ff601090b /java/com/android/dialer/app/voicemail/error/res/layout/voicemail_error_message_fragment.xml
parent1019500220518fb5fb023fcb7d370ab3cbf12307 (diff)
Revert "Update dialer to tap green cl 150332012."
This reverts commit 1019500220518fb5fb023fcb7d370ab3cbf12307. Change-Id: Ie6e4f81a995fca7345132b596521b0bd06ceffb9
Diffstat (limited to 'java/com/android/dialer/app/voicemail/error/res/layout/voicemail_error_message_fragment.xml')
-rw-r--r--java/com/android/dialer/app/voicemail/error/res/layout/voicemail_error_message_fragment.xml113
1 files changed, 0 insertions, 113 deletions
diff --git a/java/com/android/dialer/app/voicemail/error/res/layout/voicemail_error_message_fragment.xml b/java/com/android/dialer/app/voicemail/error/res/layout/voicemail_error_message_fragment.xml
deleted file mode 100644
index 4a40857a0..000000000
--- a/java/com/android/dialer/app/voicemail/error/res/layout/voicemail_error_message_fragment.xml
+++ /dev/null
@@ -1,113 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2016 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.
--->
-<android.support.v7.widget.CardView
- xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/error_card"
- style="@style/CallLogCardStyle"
- android:gravity="center_vertical"
- android:orientation="vertical">
-
- <LinearLayout
- android:id="@+id/error_card_content"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical">
-
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="@dimen/alert_main_padding"
- android:layout_marginStart="@dimen/alert_main_padding"
- android:layout_marginEnd="@dimen/alert_main_padding"
- android:gravity="center_vertical"
- android:orientation="vertical">
-
- <TextView
- android:id="@+id/error_card_header"
- android:textStyle="bold"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginBottom="@dimen/alert_title_padding"
- android:layout_gravity="center_vertical"
- android:singleLine="false"
- android:textColor="@color/primary_text_color"
- android:textSize="@dimen/call_log_primary_text_size"/>
-
- <TextView
- android:id="@+id/error_card_details"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:lineSpacingExtra="@dimen/alert_line_spacing"
- android:singleLine="false"
- android:textColor="@color/secondary_text_color"
- android:textSize="@dimen/call_log_detail_text_size"/>
- </LinearLayout>
-
- <LinearLayout
- android:id="@+id/error_actions"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="20dp"
- android:paddingTop="@dimen/alert_action_vertical_padding"
- android:paddingBottom="@dimen/alert_action_vertical_padding"
- android:paddingStart="@dimen/alert_action_horizontal_padding"
- android:paddingEnd="@dimen/alert_action_horizontal_padding"
- android:gravity="start"
- android:orientation="horizontal">
-
- <TextView
- android:id="@+id/primary_action_raised"
- style="@style/RaisedErrorActionStyle"
- android:nextFocusLeft="@+id/promo_card"
- android:nextFocusRight="@+id/primary_action"
- android:clickable="true"
- />
-
- <TextView
- android:id="@+id/primary_action"
- style="@style/ErrorActionStyle"
- android:background="?android:attr/selectableItemBackground"
- android:nextFocusLeft="@+id/promo_card"
- android:nextFocusRight="@+id/secondary_action"
- android:clickable="true"
- />
-
- <TextView
- android:id="@+id/secondary_action"
- style="@style/ErrorActionStyle"
- android:paddingEnd="@dimen/alert_action_between_padding"
- android:background="?android:attr/selectableItemBackground"
- android:nextFocusLeft="@+id/primary_action"
- android:nextFocusRight="@+id/promo_card"
- android:clickable="true"/>
-
- <android.support.v4.widget.Space
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_weight="1"/>
-
- <TextView
- android:id="@+id/secondary_action_raised"
- style="@style/RaisedErrorActionStyle"
- android:paddingEnd="@dimen/alert_action_between_padding"
- android:layout_marginEnd="8dp"
- android:nextFocusLeft="@+id/primary_action"
- android:nextFocusRight="@+id/promo_card"
- android:clickable="true"/>
-
- </LinearLayout>
- </LinearLayout>
-</android.support.v7.widget.CardView>