summaryrefslogtreecommitdiff
path: root/res/layout/blocked_number_footer.xml
diff options
context:
space:
mode:
authorTa-wei Yen <twyen@google.com>2015-11-05 14:13:12 -0800
committerTa-wei Yen <twyen@google.com>2015-11-06 22:54:14 +0000
commita5437e6882bde69cb795ed8d929c1024a8fef16e (patch)
tree1778d022d1c44d7dba00dd50abb726de8f05238b /res/layout/blocked_number_footer.xml
parent6e0fd6b77759baf43cb37d407041be051b4856b5 (diff)
Call Blocking UI/String change
+ Adjusted UI/String according to new specifications. + Added class VisualVoicemailEnabledChecker + Block number dialog display different message depending on whether VVM is activated. Bug:25455707 Change-Id: I09425053c91a5517e309302d421beadcc2d81cd4
Diffstat (limited to 'res/layout/blocked_number_footer.xml')
-rw-r--r--res/layout/blocked_number_footer.xml40
1 files changed, 40 insertions, 0 deletions
diff --git a/res/layout/blocked_number_footer.xml b/res/layout/blocked_number_footer.xml
new file mode 100644
index 000000000..cdb3ead1b
--- /dev/null
+++ b/res/layout/blocked_number_footer.xml
@@ -0,0 +1,40 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2015 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"
+ xmlns:card_view="http://schemas.android.com/apk/res-auto"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:orientation="vertical"
+ android:focusable="false">
+
+ <LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:orientation="vertical"
+ android:layout_marginBottom="8dp"
+ android:padding="16dp"
+ android:background="@android:color/white"
+ android:focusable="true">
+
+ <TextView android:id="@+id/blocked_number_footer_textview"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:textColor="@color/blocked_number_secondary_text_color"
+ android:textSize="@dimen/blocked_number_primary_text_size"
+ android:text="@string/block_number_footer_message_vvm" />
+
+ </LinearLayout>
+</LinearLayout>