summaryrefslogtreecommitdiffstats
path: root/res/layout
diff options
context:
space:
mode:
authorAndrew Lee <anwlee@google.com>2015-05-14 17:26:17 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2015-05-14 17:26:18 +0000
commit46b5395dd275ae99dfd5b8e5185f7bbfbaf053c8 (patch)
tree917c3a80e6fd7e9616d4ca1f3f1bae8435400568 /res/layout
parent39ab347ff3ca74f8c0ae2c5d3e5e7ea1f64815b0 (diff)
parentbad58ac9eb49521e3fe37207648d4aa95766e5eb (diff)
downloadandroid_packages_apps_Dialer-46b5395dd275ae99dfd5b8e5185f7bbfbaf053c8.tar.gz
android_packages_apps_Dialer-46b5395dd275ae99dfd5b8e5185f7bbfbaf053c8.tar.bz2
android_packages_apps_Dialer-46b5395dd275ae99dfd5b8e5185f7bbfbaf053c8.zip
Merge "Don't set voicemail status message in Call Log." into mnc-dev
Diffstat (limited to 'res/layout')
-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>