update ui layout
[freespace.git] / res / layout / message_detail.xml
bloba1c412775b0dea1a881c919bf85236d1b28edec2
1 <?xml version="1.0" encoding="utf-8"?>
2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3         android:orientation="vertical" android:layout_width="fill_parent"
4         android:layout_height="fill_parent">
5         <include android:id="@+id/titlebar" layout="@layout/titlebar" />
6         <include android:id="@+id/status_view" layout="@layout/status_view" />
7         <FrameLayout android:layout_width="fill_parent"
8                 android:layout_height="fill_parent" >
9                 <TabHost xmlns:android="http://schemas.android.com/apk/res/android"
10                         android:id="@android:id/tabhost" android:layout_width="fill_parent"
11                         android:layout_height="fill_parent">
13                         <LinearLayout android:orientation="vertical"
14                                 android:layout_width="fill_parent" android:layout_height="fill_parent">
16                                 <TabWidget android:id="@android:id/tabs"
17                                         android:layout_width="fill_parent" android:layout_height="wrap_content" />
19                                 <FrameLayout android:id="@android:id/tabcontent"
20                                         android:layout_width="fill_parent" android:layout_height="0dip"
21                                         android:layout_weight="1" />
22                         </LinearLayout>
23                 </TabHost>
24                 <ProgressBar android:id="@+id/updateProgressBar"
25                                                         style="?android:attr/progressBarStyleLarge" mce_style="?android:attr/progressBarStyleLarge"
26                                                         android:layout_width="wrap_content" android:layout_height="wrap_content"
27                                                         android:visibility="visible" android:layout_gravity="center"/>
28         </FrameLayout>
29 </LinearLayout>