admin
2021-02-03 1981dee5aec45793d3c4ebdbc4e637528c71b3c5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >
 
    <EditText
        android:id="@+id/url_input_edittext"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" >
    </EditText>
 
    <Button
        android:id="@+id/start_download_button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Start" >
    </Button>
 
    <Button
        android:id="@+id/show_download_list_button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Show download list"
        android:visibility="visible" >
    </Button>
 
</LinearLayout>