2016-04-21 20:28:01 -03:00
|
|
|
<RelativeLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="match_parent">
|
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/item_bkg"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_margin="2dp"
|
|
|
|
android:background="@color/bluegray">
|
2018-09-30 07:42:02 +08:00
|
|
|
|
2016-04-21 20:28:01 -03:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/item_icon"
|
|
|
|
android:layout_width="72dp"
|
|
|
|
android:layout_height="72dp"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:scaleType="fitXY"
|
|
|
|
android:gravity="center"
|
2018-08-28 19:25:56 +02:00
|
|
|
android:padding="15dp"
|
|
|
|
android:contentDescription="TODO" />
|
2018-09-30 07:42:02 +08:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/item_name"
|
2016-04-21 20:28:01 -03:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2018-09-30 07:42:02 +08:00
|
|
|
android:layout_toLeftOf="@+id/item_more"
|
2016-04-21 20:28:01 -03:00
|
|
|
android:layout_toRightOf="@id/item_icon"
|
2018-09-30 07:42:02 +08:00
|
|
|
android:ellipsize="end"
|
|
|
|
android:padding="6dp"
|
|
|
|
android:text="XXX.xx"
|
|
|
|
android:textColor="@color/white"
|
|
|
|
android:textSize="16sp"
|
|
|
|
android:textStyle="bold" />
|
2016-04-21 20:28:01 -03:00
|
|
|
|
2018-09-30 07:42:02 +08:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/item_size"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_toRightOf="@id/item_icon"
|
|
|
|
android:layout_below="@+id/item_name"
|
|
|
|
android:padding="6dp"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:text="100.00MB"
|
|
|
|
android:textSize="12sp"
|
|
|
|
android:textColor="@color/white"/>
|
2016-04-21 20:28:01 -03:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/item_status"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2018-09-30 07:42:02 +08:00
|
|
|
android:layout_below="@+id/item_name"
|
2016-04-21 20:28:01 -03:00
|
|
|
android:layout_marginLeft="6dp"
|
2018-09-30 07:42:02 +08:00
|
|
|
android:layout_marginRight="5dp"
|
|
|
|
android:layout_toLeftOf="@+id/item_more"
|
|
|
|
android:layout_toRightOf="@id/item_size"
|
|
|
|
android:padding="6dp"
|
2016-04-21 20:28:01 -03:00
|
|
|
android:singleLine="true"
|
2018-11-20 19:10:50 -03:00
|
|
|
android:textStyle="bold"
|
2016-04-21 20:28:01 -03:00
|
|
|
android:text="0%"
|
2018-09-30 07:42:02 +08:00
|
|
|
android:textColor="@color/white"
|
|
|
|
android:textSize="12sp" />
|
2016-04-21 20:28:01 -03:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
style="?attr/buttonBarButtonStyle"
|
|
|
|
android:id="@+id/item_more"
|
2018-09-30 07:42:02 +08:00
|
|
|
android:layout_width="49dp"
|
|
|
|
android:layout_height="49dp"
|
2016-04-21 20:28:01 -03:00
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:layout_marginRight="4dp"
|
|
|
|
android:src="@drawable/ic_menu_more"
|
2018-08-28 19:25:56 +02:00
|
|
|
android:scaleType="centerInside"
|
|
|
|
android:contentDescription="TODO" />
|
2016-04-21 20:28:01 -03:00
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|
|
|
</RelativeLayout>
|