2014-06-03 15:42:17 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
2014-06-09 17:49:54 +00:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-08-18 09:30:03 +00:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="4dip">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/id"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_toLeftOf="@+id/state"
|
|
|
|
android:lines="1"
|
|
|
|
android:ellipsize="end" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/state"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_alignBottom="@+id/id"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
|
|
|
<TextView
|
2014-08-24 14:37:14 +00:00
|
|
|
android:id="@+id/directory"
|
2014-08-18 09:30:03 +00:00
|
|
|
android:layout_below="@id/state"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:ellipsize="end" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/items"
|
2014-08-24 14:37:14 +00:00
|
|
|
android:layout_below="@id/directory"
|
2014-08-18 09:30:03 +00:00
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/size"
|
|
|
|
android:layout_below="@id/items"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/invalid"
|
|
|
|
android:textColor="@color/text_red"
|
|
|
|
android:layout_below="@id/size"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content" />
|
2014-06-09 17:49:54 +00:00
|
|
|
|
2014-06-30 17:05:30 +00:00
|
|
|
</RelativeLayout>
|