summaryrefslogtreecommitdiff
path: root/res/layout
diff options
context:
space:
mode:
Diffstat (limited to 'res/layout')
-rw-r--r--res/layout/call_detail.xml13
-rw-r--r--res/layout/call_detail_history_item.xml7
-rw-r--r--res/layout/playback_layout.xml13
3 files changed, 19 insertions, 14 deletions
diff --git a/res/layout/call_detail.xml b/res/layout/call_detail.xml
index c25b4a995..c9cc7d915 100644
--- a/res/layout/call_detail.xml
+++ b/res/layout/call_detail.xml
@@ -20,7 +20,6 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="gone"
- android:background="@android:color/black"
>
<!--
The list view is under everything.
@@ -72,6 +71,7 @@
android:scaleType="centerCrop"
/>
</view>
+
<LinearLayout
android:id="@+id/blue_separator"
android:layout_width="match_parent"
@@ -108,7 +108,7 @@
android:layout_marginEnd="@dimen/call_log_inner_margin"
android:layout_marginStart="@dimen/call_detail_contact_name_margin"
android:gravity="center_vertical"
- android:textColor="?attr/call_log_primary_text_color"
+ android:textColor="?attr/call_log_header_color"
android:textAppearance="?android:attr/textAppearanceMedium"
android:singleLine="true"
/>
@@ -126,9 +126,8 @@
android:id="@+id/voicemail_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
- android:paddingBottom="@dimen/call_detail_button_spacing"
android:layout_below="@id/blue_separator"
- >
+ android:paddingBottom="@dimen/call_detail_button_spacing">
<!-- The voicemail fragment will be put here. -->
</LinearLayout>
<FrameLayout
@@ -138,8 +137,9 @@
android:layout_marginBottom="@dimen/call_detail_button_spacing"
android:layout_below="@id/voicemail_container"
android:gravity="center_vertical"
- android:background="@drawable/dialpad_background"
+ android:background="@color/background_dialer_list_items"
>
+
<LinearLayout
android:id="@+id/call_and_sms_main_action"
android:layout_width="match_parent"
@@ -183,7 +183,7 @@
<View android:id="@+id/call_and_sms_divider"
android:layout_width="1px"
android:layout_height="32dip"
- android:background="@drawable/ic_divider_dashed_holo_dark"
+ android:background="@color/background_dialer_light"
android:layout_gravity="center_vertical"
/>
@@ -200,7 +200,6 @@
</LinearLayout>
</FrameLayout>
</RelativeLayout>
-
<!--
Used to hide the UI when playing a voicemail and the proximity sensor
is detecting something near the screen.
diff --git a/res/layout/call_detail_history_item.xml b/res/layout/call_detail_history_item.xml
index 4858717af..5b3fff712 100644
--- a/res/layout/call_detail_history_item.xml
+++ b/res/layout/call_detail_history_item.xml
@@ -24,6 +24,7 @@
android:paddingStart="@dimen/call_log_indent_margin"
android:paddingEnd="@dimen/call_log_outer_margin"
android:orientation="vertical"
+ android:background="@color/background_dialer_list_items"
>
<LinearLayout
android:layout_width="wrap_content"
@@ -43,7 +44,7 @@
android:layout_height="wrap_content"
android:layout_marginStart="@dimen/call_log_icon_margin"
android:textAppearance="?android:attr/textAppearanceSmall"
- android:textColor="@color/secondary_text_color"
+ android:textColor="?attr/call_log_secondary_text_color"
/>
</LinearLayout>
<TextView
@@ -51,13 +52,13 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceSmall"
- android:textColor="@color/secondary_text_color"
+ android:textColor="?attr/call_log_secondary_text_color"
/>
<TextView
android:id="@+id/duration"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceSmall"
- android:textColor="@color/secondary_text_color"
+ android:textColor="?attr/call_log_secondary_text_color"
/>
</LinearLayout>
diff --git a/res/layout/playback_layout.xml b/res/layout/playback_layout.xml
index b72ddcad1..01ed2e919 100644
--- a/res/layout/playback_layout.xml
+++ b/res/layout/playback_layout.xml
@@ -18,7 +18,7 @@
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
- android:background="@color/voicemail_playback_ui_background"
+ android:background="@color/background_dialer_light"
>
<!-- Mute, playback, trash buttons. -->
<LinearLayout
@@ -32,8 +32,8 @@
android:layout_width="match_parent"
android:layout_height="58dip"
android:layout_marginEnd="@dimen/call_detail_button_spacing"
- android:background="@drawable/dialpad_background"
android:layout_weight="1"
+ android:background="@color/background_dialer_list_items"
>
<ImageButton
android:id="@+id/playback_start_stop"
@@ -46,8 +46,8 @@
<LinearLayout
android:layout_width="match_parent"
android:layout_height="58dip"
- android:background="@drawable/dialpad_background"
android:layout_weight="1"
+ android:background="@color/background_dialer_list_items"
>
<ImageButton
android:id="@+id/playback_speakerphone"
@@ -62,9 +62,9 @@
android:id="@+id/seek_container"
android:layout_width="match_parent"
android:layout_height="80dip"
- android:background="@drawable/dialpad_background"
android:layout_below="@id/buttons_linear_layout"
android:layout_marginTop="@dimen/call_detail_button_spacing"
+ android:background="@color/background_dialer_list_items"
>
<!-- SeekBar left-right margin decreased from redlines 72dip by 8dip to account for
half thumb width (thumb is 16dip).
@@ -129,5 +129,10 @@
android:layout_alignParentEnd="true"
android:layout_centerVertical="true"
/>
+ <View
+ android:layout_width="match_parent"
+ android:layout_height="2dp"
+ android:background="@color/background_dialer_light"
+ android:layout_alignParentBottom="true"/>
</RelativeLayout>
</RelativeLayout>