summaryrefslogtreecommitdiff
path: root/java/com/android/voicemailomtp/res/layout/voicemail_change_pin.xml
diff options
context:
space:
mode:
authorEric Erfanian <erfanian@google.com>2017-03-15 14:41:07 -0700
committerEric Erfanian <erfanian@google.com>2017-03-15 16:24:23 -0700
commitd5e47f6da5b08b13ecdfa7f1edc7e12aeb83fab9 (patch)
treeb54abbb51fb7d66e7755a1fbb5db023ff601090b /java/com/android/voicemailomtp/res/layout/voicemail_change_pin.xml
parent30436e7e6d3f2c8755a91b2b6222b74d465a9e87 (diff)
Update Dialer source from latest green build.
* Refactor voicemail component * Add new enriched calling components Test: treehugger, manual aosp testing Change-Id: I521a0f86327d4b42e14d93927c7d613044ed5942
Diffstat (limited to 'java/com/android/voicemailomtp/res/layout/voicemail_change_pin.xml')
-rw-r--r--java/com/android/voicemailomtp/res/layout/voicemail_change_pin.xml97
1 files changed, 0 insertions, 97 deletions
diff --git a/java/com/android/voicemailomtp/res/layout/voicemail_change_pin.xml b/java/com/android/voicemailomtp/res/layout/voicemail_change_pin.xml
deleted file mode 100644
index b0db64b12..000000000
--- a/java/com/android/voicemailomtp/res/layout/voicemail_change_pin.xml
+++ /dev/null
@@ -1,97 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-/*
-** Copyright 2014, 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.
-*/
--->
-
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:gravity="center_horizontal"
- android:orientation="vertical">
- <!-- header text ('Enter Pin') -->
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="0dp"
- android:layout_weight="1"
- android:orientation="vertical"
- android:paddingTop="48dp"
- android:paddingStart="48dp"
- android:paddingEnd="48dp">
- <TextView
- android:id="@+id/headerText"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:gravity="center"
- android:lines="2"
- android:textAppearance="@android:style/TextAppearance.DeviceDefault.DialogWindowTitle"
- android:accessibilityLiveRegion="polite"/>
-
- <!-- hint text ('PIN too short') -->
- <TextView
- android:id="@+id/hintText"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:gravity="center"
- android:lines="2" />
-
- <!-- error text ('PIN too short') -->
- <TextView
- android:id="@+id/errorText"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:gravity="center"
- android:lines="2"
- android:textColor="@android:color/holo_red_dark"/>
-
- <!-- Password entry field -->
- <EditText
- android:id="@+id/pin_entry"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
- android:gravity="center"
- android:imeOptions="actionNext|flagNoExtractUi"
- android:inputType="numberPassword"
- android:textSize="24sp"/>
- </LinearLayout>
-
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:clipChildren="false"
- android:clipToPadding="false"
- android:gravity="end"
- android:orientation="horizontal">
-
- <!-- left : cancel -->
- <Button
- android:id="@+id/cancel_button"
- android:layout_width="0dp"
- android:layout_weight="1"
- android:layout_height="wrap_content"
- android:text="@string/change_pin_cancel_label"/>
-
- <!-- right : continue -->
- <Button
- android:id="@+id/next_button"
- android:layout_width="0dp"
- android:layout_weight="1"
- android:layout_height="wrap_content"
- android:text="@string/change_pin_continue_label"/>
-
- </LinearLayout>
-</LinearLayout>