Manage your torrents from your Android device
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
1.3 KiB

<?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" >
<CheckBox
android:id="@+id/check"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:button="@drawable/small_checkbox"
android:focusable="false" />
<TextView
android:id="@+id/name"
android:layout_toRightOf="@id/check"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:paddingTop="5dip"
android:paddingRight="5dip"
style="@style/TorentFileNameText" />
<ImageView
android:id="@+id/priority"
android:layout_below="@id/name"
android:layout_toRightOf="@id/check"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_marginRight="2dip" />
<TextView
android:id="@+id/sizes"
android:layout_below="@id/name"
android:layout_toRightOf="@id/priority"
android:layout_height="wrap_content"
android:layout_width="wrap_content" />
<TextView
android:id="@+id/progress"
android:layout_below="@id/name"
android:layout_alignParentRight="true"
android:paddingRight="5dip"
android:layout_height="wrap_content"
android:layout_width="wrap_content" />
</RelativeLayout>