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.
155 lines
4.4 KiB
155 lines
4.4 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<layout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
>
|
|
|
|
<data>
|
|
<variable
|
|
name="fileSize"
|
|
type="String"
|
|
/>
|
|
<variable
|
|
name="speed"
|
|
type="String"
|
|
/>
|
|
<variable
|
|
name="progress"
|
|
type="int"
|
|
/>
|
|
</data>
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior"
|
|
tools:context=".core.download.SingleTaskActivity"
|
|
tools:showIn="@layout/activity_single"
|
|
>
|
|
|
|
<com.arialyy.simple.widget.HorizontalProgressBarWithNumber
|
|
android:id="@+id/progressBar"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="20dp"
|
|
android:layout_alignParentLeft="true"
|
|
android:layout_alignParentStart="true"
|
|
android:layout_alignParentTop="true"
|
|
android:layout_margin="16dp"
|
|
android:layout_toLeftOf="@+id/size"
|
|
android:max="100"
|
|
android:progress="@{progress}"
|
|
style="?android:attr/progressBarStyleHorizontal"
|
|
/>
|
|
|
|
<TextView
|
|
android:id="@+id/size"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_alignTop="@+id/progressBar"
|
|
android:layout_marginRight="16dp"
|
|
android:text="@{fileSize}"
|
|
android:textSize="16sp"
|
|
/>
|
|
|
|
|
|
<LinearLayout
|
|
android:id="@+id/handle_bar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@+id/progressBar"
|
|
android:orientation="horizontal"
|
|
>
|
|
<TextView
|
|
android:id="@+id/speed"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="16dp"
|
|
android:text="@{speed}"
|
|
android:textColor="@color/black"
|
|
/>
|
|
|
|
<Button
|
|
android:id="@+id/start"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:onClick="onClick"
|
|
android:text="开始"
|
|
style="?buttonBarButtonStyle"
|
|
/>
|
|
|
|
<Button
|
|
android:id="@+id/stop"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:onClick="onClick"
|
|
android:text="暂停"
|
|
style="?buttonBarButtonStyle"
|
|
/>
|
|
|
|
<Button
|
|
android:id="@+id/cancel"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:onClick="onClick"
|
|
android:text="删除任务"
|
|
style="?buttonBarButtonStyle"
|
|
/>
|
|
</LinearLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/speed_hint"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@+id/handle_bar"
|
|
/>
|
|
|
|
<RadioGroup
|
|
android:id="@+id/speeds"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@+id/speed_hint"
|
|
android:orientation="horizontal"
|
|
android:visibility="gone"
|
|
>
|
|
|
|
<RadioButton
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:text="256kb"
|
|
/>
|
|
|
|
<RadioButton
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:text="512kb"
|
|
/>
|
|
<RadioButton
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:text="1mb"
|
|
/>
|
|
<RadioButton
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:text="2mb"
|
|
/>
|
|
|
|
<RadioButton
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:text="max"
|
|
/>
|
|
|
|
</RadioGroup>
|
|
|
|
</RelativeLayout>
|
|
</layout>
|
|
|