<?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>
|