summaryrefslogtreecommitdiff
path: root/res
diff options
context:
space:
mode:
authorAndrew Lee <anwlee@google.com>2015-05-13 17:42:27 -0700
committerAndrew Lee <anwlee@google.com>2015-05-13 17:42:56 -0700
commitbad58ac9eb49521e3fe37207648d4aa95766e5eb (patch)
treee0a6652fb4d47c8483af5462e3e32016e7257d52 /res
parent91dc991cecfd283b2cf58dbe45dc7c6e6c58ed39 (diff)
Don't set voicemail status message in Call Log.
This code has been unused for quite some time, as far as I can tell. Bug: 20433758 Change-Id: Ic9fef01954720c24d8ba6971534897a88af42a8f
Diffstat (limited to 'res')
-rw-r--r--res/layout/call_log_fragment.xml43
1 files changed, 12 insertions, 31 deletions
diff --git a/res/layout/call_log_fragment.xml b/res/layout/call_log_fragment.xml
index a5a307207..68e306074 100644
--- a/res/layout/call_log_fragment.xml
+++ b/res/layout/call_log_fragment.xml
@@ -15,42 +15,23 @@
-->
<!-- Layout parameters are set programmatically. -->
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
- android:orientation="vertical"
- android:divider="?android:attr/dividerHorizontal"
- android:showDividers="end"
android:background="@color/background_dialer_call_log">
- <FrameLayout
- android:id="@+id/voicemail_status"
+ <android.support.v7.widget.RecyclerView android:id="@+id/recycler_view"
android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:visibility="gone">
+ android:layout_height="match_parent"
+ android:background="@color/background_dialer_call_log"
+ android:paddingStart="@dimen/call_log_horizontal_margin"
+ android:paddingEnd="@dimen/call_log_horizontal_margin" />
- <include layout="@layout/call_log_voicemail_status" />
-
- </FrameLayout>
-
- <FrameLayout
+ <include
+ android:id="@+id/empty_list_view"
android:layout_width="match_parent"
- android:layout_height="match_parent">
-
- <android.support.v7.widget.RecyclerView android:id="@+id/recycler_view"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/background_dialer_call_log"
- android:paddingStart="@dimen/call_log_horizontal_margin"
- android:paddingEnd="@dimen/call_log_horizontal_margin" />
-
- <include
- android:id="@+id/empty_list_view"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- layout="@layout/empty_list_view"
- android:visibility="gone" />
-
- </FrameLayout>
+ android:layout_height="match_parent"
+ layout="@layout/empty_list_view"
+ android:visibility="gone" />
-</LinearLayout>
+</FrameLayout>