summaryrefslogtreecommitdiffstats
path: root/res/layout
diff options
context:
space:
mode:
authorxjiang <xjiang@codeaurora.org>2015-08-20 19:44:19 +0800
committerwangjing <wangjing@codeaurora.org>2015-09-11 13:15:14 +0800
commit3e85420b0672af000deb1f0a6636504b2f57f214 (patch)
tree2df315c2815719e5b33c7cca2d6b0786c1fb3aab /res/layout
parent069967983092cc50987e47605e398c8fe89c50ee (diff)
downloadandroid_packages_apps_ContactsCommon-3e85420b0672af000deb1f0a6636504b2f57f214.tar.gz
android_packages_apps_ContactsCommon-3e85420b0672af000deb1f0a6636504b2f57f214.tar.bz2
android_packages_apps_ContactsCommon-3e85420b0672af000deb1f0a6636504b2f57f214.zip
Add IP call interface supports
- Add the interface to set IP Prefix Change-Id: Ie6e29b24f185ae7c3629eb2c332e6485b5dd88de
Diffstat (limited to 'res/layout')
-rw-r--r--res/layout/ip_prefix_dialog.xml43
1 files changed, 43 insertions, 0 deletions
diff --git a/res/layout/ip_prefix_dialog.xml b/res/layout/ip_prefix_dialog.xml
new file mode 100644
index 00000000..8a59b279
--- /dev/null
+++ b/res/layout/ip_prefix_dialog.xml
@@ -0,0 +1,43 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+ * Copyright (c) 2015, The Linux Foundation. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions are
+ * met:
+ * * Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * * Redistributions in binary form must reproduce the above
+ * copyright notice, this list of conditions and the following
+ * disclaimer in the documentation and/or other materials provided
+ * with the distribution.
+ * * Neither the name of The Linux Foundation nor the names of its
+ * contributors may be used to endorse or promote products derived
+ * from this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
+ * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
+ * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+ * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
+ * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
+ * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+-->
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:orientation="vertical" >
+
+ <EditText
+ android:id="@+id/ip_prefix_dialog_edit"
+ android:layout_width="match_parent"
+ android:layout_height="45dip"
+ android:layout_margin="10dip"
+ android:inputType="phone"
+ android:hint="@string/ipcall_dialog_edit_hint"/>
+
+</LinearLayout>