This repository has been archived on 2019-12-07. You can view files and clone it, but cannot push or open issues or pull requests.
ReleaseTracker/res/layout/listview_item.xml

41 lines
1.4 KiB
XML
Raw Normal View History

2012-10-09 15:17:04 +00:00
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/RelativeLayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:textSize="30dp" />
<TextView
android:id="@+id/release_date"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/title"
android:layout_toRightOf="@+id/artist"
android:layout_toLeftOf="@+id/checkbox"
android:gravity="right" />
<TextView
android:id="@+id/artist"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/title" />
<CheckBox
android:id="@+id/checkbox"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:onClick="checkBoxClick"
android:visibility="invisible"
android:focusable="false" />
</RelativeLayout>