summaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authorEvan Charlton <evanc@google.com>2014-11-11 00:33:59 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-11-11 00:33:59 +0000
commita786acd66e92d83ec6b1983f2e43d7d91369d935 (patch)
treed21849073aef8a3e8efe29714714e6f0eec37b2b /res
parent8a6dccf69d1b9bd16001b0ef66eb7f4dbcfc18cb (diff)
parent2c915d575e728f403d299f79e60f4a70a8820796 (diff)
downloadandroid_packages_apps_PhoneCommon-a786acd66e92d83ec6b1983f2e43d7d91369d935.tar.gz
android_packages_apps_PhoneCommon-a786acd66e92d83ec6b1983f2e43d7d91369d935.tar.bz2
android_packages_apps_PhoneCommon-a786acd66e92d83ec6b1983f2e43d7d91369d935.zip
am 2c915d57: am 21df9696: am 972e8730: Show ILD rate information if present
* commit '2c915d575e728f403d299f79e60f4a70a8820796': Show ILD rate information if present
Diffstat (limited to 'res')
-rw-r--r--res/layout/dialpad_view.xml33
1 files changed, 33 insertions, 0 deletions
diff --git a/res/layout/dialpad_view.xml b/res/layout/dialpad_view.xml
index a6ff7aa..8ac4cf2 100644
--- a/res/layout/dialpad_view.xml
+++ b/res/layout/dialpad_view.xml
@@ -24,6 +24,39 @@
android:background="@color/background_dialpad"
android:clickable="true" >
+ <!-- Text field where call rate is displayed for ILD calls. -->
+ <RelativeLayout
+ android:id="@+id/rate_container"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:paddingTop="8dp"
+ android:visibility="gone">
+
+ <TextView android:id="@+id/ild_country"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_alignParentStart="true"
+ android:layout_alignParentTop="true"
+ android:layout_marginStart="@dimen/dialpad_digits_padding" />
+
+ <TextView android:id="@+id/ild_rate"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:textStyle="bold"
+ android:layout_marginStart="4dp"
+ android:layout_toEndOf="@id/ild_country" />
+
+ <View
+ android:layout_width="match_parent"
+ android:layout_height="1dp"
+ android:background="#e3e3e3"
+ android:layout_marginTop="8dp"
+ android:layout_below="@id/ild_country"
+ android:layout_alignParentStart="true"
+ android:layout_alignParentEnd="true" />
+
+ </RelativeLayout>
+
<!-- Text field and possibly soft menu button above the keypad where
the digits are displayed. -->
<LinearLayout