Currently the downloading and displaying of avatar images is working, however we now need to fetch the author avatar url from the forum. Signed-off-by: Ricky Barrette <rickbarrette@gmail.com>
55 lines
2.0 KiB
XML
55 lines
2.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:padding="5dip" >
|
|
|
|
<QuickContactBadge
|
|
android:id="@+id/quickContactBadge1"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentLeft="true"
|
|
android:layout_centerVertical="true"
|
|
/>
|
|
|
|
<TextView
|
|
android:id="@+id/textView1"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_alignParentTop="true"
|
|
android:layout_toRightOf="@+id/quickContactBadge1"
|
|
android:text="@string/title"
|
|
android:textAppearance="?android:attr/textAppearanceLarge" />
|
|
|
|
<TextView
|
|
android:id="@+id/textView2"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignLeft="@+id/textView1"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_below="@+id/textView1"
|
|
android:text="@string/latest_post"
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
|
<TextView
|
|
android:id="@+id/textView3"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@+id/textView2"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_toRightOf="@+id/quickContactBadge1"
|
|
android:text="@string/user"
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
|
|
|
<TextView
|
|
android:id="@+id/textView4"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@+id/textView2"
|
|
android:layout_alignParentRight="true"
|
|
android:text="@string/new_posts"
|
|
android:visibility="gone"
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
|
|
|
</RelativeLayout> |