blob: 27c7954743f5715d6776db635fa4a6c012e2876f [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (C) 2011 Google Inc.
Licensed to The Android Open Source Project.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.android.mail.browse.ConversationContainer
android:id="@+id/conversation_container"
android:layout_width="match_parent"
android:layout_height="match_parent">
<!-- base WebView layer -->
<com.android.mail.browse.ConversationWebView
android:id="@+id/webview"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<!-- scrolling overlay views go here -->
<!-- topmost layer for floating views (e.g. snap header, New Message bar) -->
<!-- ConversationContainer draws this child on the very top, above all scrolling views -->
<FrameLayout
android:id="@+id/conversation_topmost_overlay"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginLeft="@dimen/conversation_view_margin_side"
android:layout_marginRight="@dimen/conversation_view_margin_side">
<include layout="@layout/conversation_message_header"
android:id="@+id/snap_header"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="top"
android:visibility="gone" />
<include layout="@layout/new_message_notification_bar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom" />
<!-- TODO: scroll indicators go on top of all other layers (or the parent draws it) -->
</FrameLayout>
</com.android.mail.browse.ConversationContainer>
<RelativeLayout
android:id="@+id/background_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:background="@android:color/white"
android:visibility="gone">
<RelativeLayout
android:id="@+id/info_view"
android:layout_width="match_parent"
android:layout_height="70sp"
android:layout_marginLeft="@dimen/info_view_margin"
android:layout_marginRight="@dimen/info_view_margin"
android:paddingLeft="8dip"
android:paddingRight="16dip"
android:gravity="center"
android:visibility="gone">
<ProgressBar
android:id="@+id/progress_bar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="6dip"
android:layout_marginRight="8dip"
android:indeterminate="true"
android:layout_centerVertical="true" />
<RelativeLayout
android:layout_centerVertical="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/progress_bar">
<TextView
android:id="@+id/senders_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:singleLine="true"
android:textSize="@dimen/senders_font_size"
android:layout_alignParentTop="true"/>
<TextView
android:id="@+id/info_subject_view"
style="@style/SwipeSubjectStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/senders_view"/>
</RelativeLayout>
</RelativeLayout>
<com.android.mail.MinTimeProgressView
android:id="@+id/loading_progress"
style="?android:attr/progressBarStyleLarge"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:indeterminate="true"
android:indeterminateBehavior="repeat"
android:layout_gravity="center"
android:visibility="gone" />
</RelativeLayout>
</FrameLayout>