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"
|
2015-08-02 23:28:05 +00:00
|
|
|
android:layout_width="match_parent"
|
2014-08-18 09:30:03 +00:00
|
|
|
android:layout_height="wrap_content"
|
2015-08-02 23:28:05 +00:00
|
|
|
android:paddingBottom="8dp"
|
2015-08-23 21:03:15 +00:00
|
|
|
android:paddingLeft="@dimen/abc_action_bar_content_inset_material"
|
|
|
|
android:paddingRight="@dimen/abc_action_bar_content_inset_material"
|
2015-08-02 23:28:05 +00:00
|
|
|
android:paddingTop="8dp">
|
2014-08-18 09:30:03 +00:00
|
|
|
|
|
|
|
<TextView
|
2016-04-09 22:15:48 +00:00
|
|
|
android:id="@+id/label"
|
2014-08-18 09:30:03 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentLeft="true"
|
2015-06-19 18:15:35 +00:00
|
|
|
android:layout_alignParentStart="true"
|
2014-08-18 09:30:03 +00:00
|
|
|
android:layout_toLeftOf="@+id/state"
|
2015-06-19 18:15:35 +00:00
|
|
|
android:layout_toStartOf="@+id/state"
|
2015-08-02 23:28:05 +00:00
|
|
|
android:ellipsize="end"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:textAppearance="?textAppearanceListItemPrimary" />
|
2014-08-18 09:30:03 +00:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/state"
|
|
|
|
android:layout_width="wrap_content"
|
2015-08-02 23:28:05 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignBottom="@id/id"
|
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:textAppearance="?textAppearanceListItemSmall" />
|
2014-08-18 09:30:03 +00:00
|
|
|
|
|
|
|
<TextView
|
2014-08-24 14:37:14 +00:00
|
|
|
android:id="@+id/directory"
|
2014-08-18 09:30:03 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2015-08-02 23:28:05 +00:00
|
|
|
android:layout_below="@id/state"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:textAppearance="?textAppearanceListItemSecondary" />
|
2014-08-18 09:30:03 +00:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/items"
|
|
|
|
android:layout_width="wrap_content"
|
2015-08-02 23:28:05 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@id/directory"
|
|
|
|
android:textAppearance="?textAppearanceListItemSecondary" />
|
2014-08-18 09:30:03 +00:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/size"
|
|
|
|
android:layout_width="wrap_content"
|
2015-08-02 23:28:05 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@id/items"
|
|
|
|
android:textAppearance="?textAppearanceListItemSecondary" />
|
2014-08-18 09:30:03 +00:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/invalid"
|
|
|
|
android:layout_width="wrap_content"
|
2015-08-02 23:28:05 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@id/size"
|
|
|
|
android:textAppearance="?textAppearanceListItemSecondary"
|
|
|
|
android:textColor="@color/text_red" />
|
2014-06-09 17:49:54 +00:00
|
|
|
|
2014-06-30 17:05:30 +00:00
|
|
|
</RelativeLayout>
|