2009-11-26 10:47:58 -05:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent" >
|
|
|
|
<LinearLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:id="@+id/batch_button_area"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
android:layout_centerHorizontal="true"
|
|
|
|
android:visibility="gone"
|
|
|
|
android:background="#CCCCCC"
|
|
|
|
>
|
2010-06-09 23:37:23 -04:00
|
|
|
<ImageButton
|
2009-11-26 10:47:58 -05:00
|
|
|
android:id="@+id/batch_read_button"
|
|
|
|
android:layout_width="0dip"
|
2010-06-08 22:23:56 -04:00
|
|
|
android:layout_height="wrap_content"
|
2009-11-26 10:47:58 -05:00
|
|
|
android:layout_weight="1"
|
2010-06-08 22:23:56 -04:00
|
|
|
android:gravity="center"
|
2010-06-09 23:37:23 -04:00
|
|
|
android:src="@drawable/ic_button_mark_read"
|
2009-11-26 10:47:58 -05:00
|
|
|
/>
|
2010-06-09 23:37:23 -04:00
|
|
|
<ImageButton
|
2009-11-26 10:47:58 -05:00
|
|
|
android:id="@+id/batch_delete_button"
|
|
|
|
android:layout_width="0dip"
|
2010-05-11 19:58:02 -04:00
|
|
|
android:layout_height="fill_parent"
|
2009-11-26 10:47:58 -05:00
|
|
|
android:layout_weight="1"
|
2010-06-09 23:37:23 -04:00
|
|
|
android:src="@drawable/ic_button_delete"
|
2009-11-26 10:47:58 -05:00
|
|
|
/>
|
2010-06-09 23:37:23 -04:00
|
|
|
<ImageButton
|
2009-11-26 10:47:58 -05:00
|
|
|
android:id="@+id/batch_flag_button"
|
|
|
|
android:layout_width="0dip"
|
2010-06-08 22:23:56 -04:00
|
|
|
android:layout_height="fill_parent"
|
2009-11-26 10:47:58 -05:00
|
|
|
android:layout_weight="1"
|
2010-06-09 23:37:23 -04:00
|
|
|
android:src="@drawable/ic_button_flag"
|
2009-11-26 10:47:58 -05:00
|
|
|
/>
|
2010-06-09 23:37:23 -04:00
|
|
|
<ImageButton
|
2010-01-12 22:37:04 -05:00
|
|
|
android:id="@+id/batch_done_button"
|
|
|
|
android:layout_width="0dip"
|
2010-05-11 19:58:02 -04:00
|
|
|
android:layout_height="fill_parent"
|
2010-01-12 22:37:04 -05:00
|
|
|
android:layout_weight="1"
|
2010-06-09 23:37:23 -04:00
|
|
|
android:src="@drawable/ic_button_close_clear_cancel"
|
2010-01-12 22:37:04 -05:00
|
|
|
/>
|
2009-11-26 10:47:58 -05:00
|
|
|
</LinearLayout>
|
2009-11-30 17:39:01 -05:00
|
|
|
<ListView
|
|
|
|
android:id="@+id/message_list"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:layout_above="@id/batch_button_area"
|
|
|
|
android:layout_alignWithParentIfMissing="true"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:layout_centerHorizontal="true"
|
2010-05-04 16:54:46 -04:00
|
|
|
android:cacheColorHint="?android:attr/colorBackground"
|
2009-11-30 17:39:01 -05:00
|
|
|
/>
|
2009-11-26 10:47:58 -05:00
|
|
|
</RelativeLayout>
|