summaryrefslogtreecommitdiffstats
path: root/res/layout/dtmf_twelve_key_dialer_view.xml
diff options
context:
space:
mode:
authorAndrew Lee <anwlee@google.com>2014-05-02 13:58:18 -0700
committerAndrew Lee <anwlee@google.com>2014-05-02 14:18:03 -0700
commitde956513f9db9ff52a8c2d85f3bdddeb4cfcf845 (patch)
tree99e4763180ccad6672d15a688e1f3fde43938d1a /res/layout/dtmf_twelve_key_dialer_view.xml
parentb898082403ca6ae562aa1437230981295dc0877f (diff)
downloadpackages_apps_InCallUI-de956513f9db9ff52a8c2d85f3bdddeb4cfcf845.tar.gz
packages_apps_InCallUI-de956513f9db9ff52a8c2d85f3bdddeb4cfcf845.tar.bz2
packages_apps_InCallUI-de956513f9db9ff52a8c2d85f3bdddeb4cfcf845.zip
Styling polish to InCallUI.
- Fix clipping of shadow on the end call button. - Add translation-z to the primary call info. - Make the dialpad in the InCallUI transparent. This required in part renaming some constants which were being overriden by Dialer. Bug: 14108639 Change-Id: I29657fbc9e0b9b4957135e77b2db62159541b43a
Diffstat (limited to 'res/layout/dtmf_twelve_key_dialer_view.xml')
-rw-r--r--res/layout/dtmf_twelve_key_dialer_view.xml10
1 files changed, 5 insertions, 5 deletions
diff --git a/res/layout/dtmf_twelve_key_dialer_view.xml b/res/layout/dtmf_twelve_key_dialer_view.xml
index 6bae3938..fb3b66e9 100644
--- a/res/layout/dtmf_twelve_key_dialer_view.xml
+++ b/res/layout/dtmf_twelve_key_dialer_view.xml
@@ -20,14 +20,13 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
- android:layout_marginTop="1dip" >
+ android:layout_marginTop="1dip"
+ android:background="@color/incall_dialpad_background" >
<view class="com.android.incallui.DialpadFragment$HoverIgnoringLinearLayout"
android:orientation="vertical"
android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/background_dialpad">
-
+ android:layout_height="match_parent" >
<!-- Display of the digits you've typed so far.
This widget appears completely non-interactive to the user: you
@@ -35,6 +34,7 @@
already sent over the network. But it's still an EditText rather
than a TextView because it needs to receive key events from a
hard keyboard, if present (see mDialerKeyListener). -->
+ <!-- Edit text background is fully transparent to get rid of its underline. -->
<EditText
android:id="@+id/dtmfDialerField"
android:layout_width="match_parent"
@@ -44,13 +44,13 @@
android:layout_marginBottom="5dp"
android:layout_marginStart="32dp"
android:layout_marginEnd="32dp"
+ android:background="@null"
android:paddingEnd="12dp"
android:paddingStart="12dp"
android:singleLine="true"
android:scrollHorizontally="true"
android:gravity="center"
android:freezesText="true"
- android:background="@color/background_dialpad"
android:fontFamily="sans-serif-light"
android:textSize="@dimen/dialpad_digits_text_size"
android:textColor="@color/dialpad_digits_text_color"