2013-03-20 02:53:09 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2013-08-17 17:25:40 +00:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2013-03-20 02:53:09 +00:00
|
|
|
android:layout_width="fill_parent"
|
2013-08-17 17:25:40 +00:00
|
|
|
android:layout_height="?android:attr/listPreferredItemHeight"
|
|
|
|
android:padding="3dp" >
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/GameItemIcon"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
android:layout_marginRight="6dip" />
|
|
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/GameItemSubText"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="26dip"
|
|
|
|
|
|
|
|
android:layout_toRightOf="@id/GameItemIcon"
|
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
|
|
|
|
android:singleLine="true"
|
|
|
|
android:ellipsize="marquee"/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/GameItemTitle"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
|
|
|
android:layout_toRightOf="@id/GameItemIcon"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:layout_above="@id/GameItemSubText"
|
|
|
|
android:layout_alignWithParentIfMissing="true"
|
|
|
|
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:textStyle="bold" />
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:src="@android:drawable/divider_horizontal_dark"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:scaleType="fitXY"
|
|
|
|
android:paddingLeft="5dp"
|
|
|
|
android:paddingRight="5dp"
|
|
|
|
android:paddingBottom="2dp"
|
|
|
|
android:paddingTop="2dp" />
|
|
|
|
|
|
|
|
</RelativeLayout>
|
2013-06-22 12:45:05 +00:00
|
|
|
|