mirror of
https://github.com/TeamNewPipe/NewPipe
synced 2024-11-16 23:04:56 +00:00
d647555e3a
* use bold style in status (mission_item_linear.xml) * fix download attemps not begin updated * dont stop the queue if a download fails * implement partial wake-lock & wifi-lock * show notifications for failed downloads * ¿proper bitmap dispose? (DownloadManagerService.java) * improve buffer filling (CircularFile.java) * [Mp4Dash] increment reserved space from 2MiB to 15MiB. This is expensive but useful for devices with low ram * [WebM] use 2MiB of reserved space * fix debug warning if one thread is used * fix wrong download speed when the activity is suspended * Fix "Queue" menu item that appears in post-processing errors * fix mission length dont being updated (missing commit)
79 lines
2.2 KiB
XML
79 lines
2.2 KiB
XML
<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">
|
|
|
|
<ImageView
|
|
android:id="@+id/item_icon"
|
|
android:layout_width="72dp"
|
|
android:layout_height="72dp"
|
|
android:layout_centerVertical="true"
|
|
android:scaleType="fitXY"
|
|
android:gravity="center"
|
|
android:padding="15dp"
|
|
android:contentDescription="TODO" />
|
|
|
|
<TextView
|
|
android:id="@+id/item_name"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_toLeftOf="@+id/item_more"
|
|
android:layout_toRightOf="@id/item_icon"
|
|
android:ellipsize="end"
|
|
android:padding="6dp"
|
|
android:text="XXX.xx"
|
|
android:textColor="@color/white"
|
|
android:textSize="16sp"
|
|
android:textStyle="bold" />
|
|
|
|
<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"/>
|
|
|
|
<TextView
|
|
android:id="@+id/item_status"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@+id/item_name"
|
|
android:layout_marginLeft="6dp"
|
|
android:layout_marginRight="5dp"
|
|
android:layout_toLeftOf="@+id/item_more"
|
|
android:layout_toRightOf="@id/item_size"
|
|
android:padding="6dp"
|
|
android:singleLine="true"
|
|
android:textStyle="bold"
|
|
android:text="0%"
|
|
android:textColor="@color/white"
|
|
android:textSize="12sp" />
|
|
|
|
<ImageView
|
|
style="?attr/buttonBarButtonStyle"
|
|
android:id="@+id/item_more"
|
|
android:layout_width="49dp"
|
|
android:layout_height="49dp"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_centerVertical="true"
|
|
android:layout_marginRight="4dp"
|
|
android:src="@drawable/ic_menu_more"
|
|
android:scaleType="centerInside"
|
|
android:contentDescription="TODO" />
|
|
|
|
</RelativeLayout>
|
|
|
|
</RelativeLayout>
|