Revision b4052e61857a54a5608e92494b6cdfa26bd22b22 authored by muncus@gmail.com on 21 January 2012, 19:34:49 UTC, committed by muncus@gmail.com on 21 January 2012, 19:34:49 UTC
git-svn-id: https://klaxon.googlecode.com/svn/trunk@144 c4afc712-db7e-11dd-87b6-9d1a99559f42
1 parent 108246e
Raw File
replylist_item.xml
<?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"
    >
    <ImageView android:id="@+id/icon"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        />
    <TextView android:id="@+id/subject"
        android:layout_weight="1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="no subject"
        android:textSize="20px"
        android:textStyle="bold"
        android:layout_toRightOf="@id/icon"
        />
    <TextView android:id="@+id/body"
        android:layout_weight="0.5"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="no data"
        android:layout_toRightOf="@id/icon"
        android:layout_below="@id/subject"
        android:lines="1"
        />
</RelativeLayout>

back to top