2008-10-28 01:04:44 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2011-02-11 00:29:46 +00:00
|
|
|
<com.fsck.k9.view.SingleMessageView
|
2012-02-21 03:56:05 +00:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2011-02-10 22:57:54 +00:00
|
|
|
android:id="@+id/message_view"
|
2012-02-21 03:56:05 +00:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="fill_parent"
|
2013-01-24 12:04:06 +00:00
|
|
|
android:layout_height="fill_parent"
|
2012-02-21 03:56:05 +00:00
|
|
|
android:layout_weight="1">
|
|
|
|
|
2013-03-23 21:53:02 +00:00
|
|
|
<com.fsck.k9.view.NonLockingScrollView
|
2008-10-28 01:04:44 +00:00
|
|
|
android:layout_width="fill_parent"
|
2013-04-02 14:17:54 +00:00
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_weight="1">
|
2012-02-21 03:56:05 +00:00
|
|
|
|
2008-10-28 01:04:44 +00:00
|
|
|
<LinearLayout
|
2010-05-03 00:20:19 +00:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="fill_parent"
|
2013-03-31 20:15:04 +00:00
|
|
|
android:layout_height="fill_parent">
|
2012-02-21 03:56:05 +00:00
|
|
|
|
2013-03-23 21:53:02 +00:00
|
|
|
<!-- Header area -->
|
|
|
|
<include layout="@layout/message_view_header"/>
|
|
|
|
|
|
|
|
<!-- Content area -->
|
|
|
|
<com.fsck.k9.view.MessageWebView
|
|
|
|
android:id="@+id/message_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
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 -->
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/attachments_container"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/attachments"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="4dip" />
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/show_hidden_attachments"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/message_view_show_more_attachments_action"/>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/hidden_attachments"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="4dip"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</com.fsck.k9.view.NonLockingScrollView>
|
2012-02-21 03:56:05 +00:00
|
|
|
|
2011-01-13 16:29:07 +00:00
|
|
|
<Button android:id="@+id/download_remainder"
|
|
|
|
android:text="@string/message_view_download_remainder"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:visibility="gone"
|
2012-02-21 03:56:05 +00:00
|
|
|
android:layout_width="fill_parent"/>
|
|
|
|
|
2011-02-11 00:29:46 +00:00
|
|
|
</com.fsck.k9.view.SingleMessageView>
|