135 lines
5.2 KiB
XML
135 lines
5.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" >
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical" >
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@android:color/darker_gray"
|
|
android:orientation="vertical" >
|
|
|
|
<TextView
|
|
android:id="@+id/email_subject"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="5dp"
|
|
android:text="Subject"
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
|
<ImageView
|
|
android:id="@+id/picture"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignLeft="@+id/email_subject"
|
|
android:layout_below="@+id/email_subject"
|
|
android:src="@drawable/ic_contact_picture" />
|
|
|
|
<TableLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:layout_below="@+id/email_subject"
|
|
android:layout_marginBottom="5dp"
|
|
android:layout_marginLeft="5dp"
|
|
android:layout_toRightOf="@+id/picture" >
|
|
|
|
<TableRow
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content" >
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginRight="3dp"
|
|
android:text="@string/email_from" />
|
|
|
|
<TextView
|
|
android:id="@+id/email_sender"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content" />
|
|
</TableRow>
|
|
|
|
<TableRow
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content" >
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginRight="3dp"
|
|
android:text="@string/email_to" />
|
|
|
|
<LinearLayout
|
|
android:id="@+id/email_recipients"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical" >
|
|
</LinearLayout>
|
|
</TableRow>
|
|
|
|
<TableRow
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content" >
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginRight="3dp"
|
|
android:text="@string/label_sent" />
|
|
|
|
<TextView
|
|
android:id="@+id/email_sent"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content" />
|
|
</TableRow>
|
|
|
|
<TableRow
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content" >
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginRight="3dp"
|
|
android:text="@string/email_received" />
|
|
|
|
<TextView
|
|
android:id="@+id/email_received"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content" />
|
|
</TableRow>
|
|
|
|
<TableRow
|
|
android:id="@+id/email_status_row"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:visibility="gone" >
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginRight="3dp"
|
|
android:text="@string/email_status" />
|
|
|
|
<TextView
|
|
android:id="@+id/email_status"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content" />
|
|
</TableRow>
|
|
</TableLayout>
|
|
</RelativeLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/email_content"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="5dp" />
|
|
</LinearLayout>
|
|
|
|
</ScrollView>
|