Include voicemail status layout in call details page.
The logic to populate message text in call details page would be done
in a follow up cl.
Bug: 5040099
Change-Id: I2ee28c98c1d7b240b428abf7a68fc8f020a385e5
diff --git a/res/layout/call_log_fragment.xml b/res/layout/call_log_fragment.xml
index 573969b..2d0b9b5 100644
--- a/res/layout/call_log_fragment.xml
+++ b/res/layout/call_log_fragment.xml
@@ -19,7 +19,16 @@
android:layout_height="match_parent"
android:orientation="vertical"
>
- <include layout="@layout/call_log_voicemail_status"/>
+ <FrameLayout
+ android:id="@+id/voicemail_status"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_alignParentLeft="true"
+ android:layout_alignParentBottom="true"
+ android:visibility="gone">
+ <include layout="@layout/call_log_voicemail_status"
+ />
+ </FrameLayout>
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
@@ -29,7 +38,6 @@
android:layout_height="match_parent"
android:scrollbarStyle="outsideOverlay"
/>
-
<TextView android:id="@android:id/empty"
android:layout_width="match_parent"
android:layout_height="match_parent"
@@ -39,4 +47,3 @@
/>
</FrameLayout>
</LinearLayout>
-