70 lines
1.9 KiB
XML
70 lines
1.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<layout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:fitsSystemWindows="true"
|
|
android:orientation="vertical"
|
|
>
|
|
|
|
<include layout="@layout/layout_bar"/>
|
|
|
|
<Button
|
|
android:id="@+id/single_task"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:onClick="onClick"
|
|
android:text="单任务下载"
|
|
style="?buttonBarButtonStyle"
|
|
/>
|
|
|
|
<Button
|
|
android:id="@+id/multi_task"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:onClick="onClick"
|
|
android:text="多任务下载"
|
|
style="?buttonBarButtonStyle"
|
|
/>
|
|
|
|
<Button
|
|
android:id="@+id/dialog_task"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:onClick="onClick"
|
|
android:text="在dialog中使用"
|
|
style="?buttonBarButtonStyle"
|
|
/>
|
|
|
|
<Button
|
|
android:id="@+id/pop_task"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:onClick="onClick"
|
|
android:text="在popupwindow中使用"
|
|
style="?buttonBarButtonStyle"
|
|
/>
|
|
|
|
<Button
|
|
android:id="@+id/fragment_task"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:onClick="onClick"
|
|
android:text="在Fragment中使用"
|
|
style="?buttonBarButtonStyle"
|
|
/>
|
|
|
|
<Button
|
|
android:id="@+id/notification"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:onClick="onClick"
|
|
android:text="在Notification中使用"
|
|
style="?buttonBarButtonStyle"
|
|
/>
|
|
|
|
</LinearLayout>
|
|
</layout>
|