58 lines
1.7 KiB
XML
58 lines
1.7 KiB
XML
<?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"
|
|
>
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
>
|
|
<include layout="@layout/layout_bar"/>
|
|
|
|
<android.support.v7.widget.RecyclerView
|
|
android:id="@+id/list"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_above="@+id/num"
|
|
android:layout_below="@+id/toolbar"
|
|
/>
|
|
|
|
<Button
|
|
android:id="@+id/num"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_margin="16dp"
|
|
android:onClick="onClick"
|
|
android:text="下载数设置"
|
|
/>
|
|
|
|
<Button
|
|
android:id="@+id/stop_all"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_alignParentLeft="true"
|
|
android:layout_margin="16dp"
|
|
android:onClick="onClick"
|
|
android:text="停止所有"
|
|
/>
|
|
|
|
|
|
<Button
|
|
android:id="@+id/turn"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_margin="16dp"
|
|
android:onClick="onClick"
|
|
android:text="下载列表"
|
|
/>
|
|
|
|
</RelativeLayout>
|
|
</layout>
|