2011-09-14 01:26:17 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2011-09-16 01:34:06 +00:00
|
|
|
<org.envaya.kalsms.ui.CheckableRelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2011-09-14 01:26:17 +00:00
|
|
|
android:orientation="horizontal"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2011-09-14 19:26:14 +00:00
|
|
|
android:background="#cccccc">
|
2011-09-16 01:34:06 +00:00
|
|
|
<org.envaya.kalsms.ui.InertCheckBox android:id="@+id/inbox_checkbox"
|
2011-09-14 01:26:17 +00:00
|
|
|
android:layout_width="wrap_content"
|
2011-09-14 19:26:14 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:focusable="false"
|
|
|
|
/>
|
2011-09-14 01:26:17 +00:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/inbox_address"
|
|
|
|
android:layout_width="fill_parent"
|
2011-09-14 19:26:14 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_toRightOf="@id/inbox_checkbox"
|
|
|
|
android:layout_alignTop="@id/inbox_checkbox"
|
2011-09-14 01:26:17 +00:00
|
|
|
android:textColor="#333333"
|
|
|
|
android:layout_marginTop="4sp"
|
|
|
|
android:layout_marginLeft="6sp"
|
2011-09-14 19:26:14 +00:00
|
|
|
android:focusable="false"
|
2011-09-14 01:26:17 +00:00
|
|
|
android:textSize="14sp"></TextView>
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/inbox_body"
|
2011-09-14 19:26:14 +00:00
|
|
|
android:layout_below="@id/inbox_address"
|
|
|
|
android:layout_alignLeft="@id/inbox_address"
|
2011-09-14 01:26:17 +00:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textColor="#666666"
|
2011-09-14 19:26:14 +00:00
|
|
|
android:layout_marginBottom="6sp"
|
|
|
|
android:focusable="false"
|
|
|
|
android:paddingBottom="6sp"
|
2011-09-14 01:26:17 +00:00
|
|
|
android:textSize="14sp"></TextView>
|
2011-09-16 01:34:06 +00:00
|
|
|
</org.envaya.kalsms.ui.CheckableRelativeLayout>
|