2008-10-27 21:04:44 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2011-02-10 19:29:46 -05:00
|
|
|
<com.fsck.k9.view.SingleMessageView
|
2012-02-20 22:56:05 -05:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2011-02-10 17:57:54 -05:00
|
|
|
android:id="@+id/message_view"
|
2012-02-20 22:56:05 -05:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="fill_parent"
|
2013-01-24 07:04:06 -05:00
|
|
|
android:layout_height="fill_parent"
|
2012-02-20 22:56:05 -05:00
|
|
|
android:layout_weight="1">
|
|
|
|
|
2011-01-13 11:29:07 -05:00
|
|
|
<!-- Header area -->
|
2012-02-20 22:56:05 -05:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/message_view_header_container"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
<include layout="@layout/message_view_header"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<!-- Content area -->
|
|
|
|
<com.fsck.k9.view.MessageWebView
|
|
|
|
android:id="@+id/message_content"
|
|
|
|
android:layout_height="0dip"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:layout_width="fill_parent"/>
|
|
|
|
|
|
|
|
<com.fsck.k9.view.AccessibleWebView
|
|
|
|
android:id="@+id/accessible_message_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="fill_parent"/>
|
|
|
|
|
|
|
|
<!-- Attachments area -->
|
|
|
|
<ScrollView
|
|
|
|
android:id="@+id/attachments_container"
|
2008-10-27 21:04:44 -04:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2012-02-20 22:56:05 -05:00
|
|
|
android:layout_weight="1">
|
|
|
|
|
2008-10-27 21:04:44 -04:00
|
|
|
<LinearLayout
|
2012-02-24 18:43:09 -05:00
|
|
|
android:id="@+id/inside_attachments_container"
|
2010-05-02 20:20:19 -04:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="fill_parent"
|
2012-02-20 22:56:05 -05:00
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
2010-05-01 20:04:27 -04:00
|
|
|
<LinearLayout
|
2012-02-20 22:56:05 -05:00
|
|
|
android:id="@+id/attachments"
|
|
|
|
android:orientation="vertical"
|
2010-05-01 20:04:27 -04:00
|
|
|
android:layout_width="fill_parent"
|
2008-10-27 21:04:44 -04:00
|
|
|
android:layout_height="wrap_content"
|
2012-02-20 22:56:05 -05:00
|
|
|
android:padding="4dip" />
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/show_hidden_attachments"
|
|
|
|
android:layout_width="fill_parent"
|
2009-06-14 10:03:30 -04:00
|
|
|
android:layout_height="wrap_content"
|
2012-02-20 22:56:05 -05:00
|
|
|
android:text="@string/message_view_show_more_attachments_action"/>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/hidden_attachments"
|
2010-05-02 20:20:19 -04:00
|
|
|
android:orientation="vertical"
|
2012-02-20 22:56:05 -05:00
|
|
|
android:layout_width="fill_parent"
|
2009-06-14 10:03:30 -04:00
|
|
|
android:layout_height="wrap_content"
|
2012-02-20 22:56:05 -05:00
|
|
|
android:padding="4dip"/>
|
|
|
|
|
2008-10-27 21:04:44 -04:00
|
|
|
</LinearLayout>
|
2012-02-20 22:56:05 -05:00
|
|
|
|
|
|
|
</ScrollView>
|
|
|
|
|
2011-01-13 11:29:07 -05:00
|
|
|
<Button android:id="@+id/download_remainder"
|
|
|
|
android:text="@string/message_view_download_remainder"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:visibility="gone"
|
2012-02-20 22:56:05 -05:00
|
|
|
android:layout_width="fill_parent"/>
|
|
|
|
|
2011-02-10 19:29:46 -05:00
|
|
|
</com.fsck.k9.view.SingleMessageView>
|