2010-07-19 04:46:02 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2011-02-01 20:27:07 +00:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:padding="10sp">
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/textStatus"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="Camlistore Uploader" />
|
|
|
|
<LinearLayout
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="5px"
|
|
|
|
android:gravity="center_horizontal">
|
|
|
|
<Button
|
|
|
|
android:id="@+id/buttonToggle"
|
|
|
|
android:padding="15sp"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@+string/pause_resume" />
|
|
|
|
</LinearLayout>
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/textBlobsRemain"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@+string/blobs_remaining" />
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/textUploadStatus"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@+string/status_detail" />
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/textByteStatus"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@+string/bytes_uploaded" />
|
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/progressByteStatus"
|
|
|
|
style="?android:attr/progressBarStyleHorizontal"
|
|
|
|
android:indeterminate="false"
|
|
|
|
android:indeterminateOnly="false"
|
|
|
|
android:minHeight="20sp"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="20sp" />
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/textByteStatus"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@+string/blobs_uploaded" />
|
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/progressBlobStatus"
|
|
|
|
style="?android:attr/progressBarStyleHorizontal"
|
|
|
|
android:indeterminate="false"
|
|
|
|
android:indeterminateOnly="false"
|
|
|
|
android:minHeight="20sp"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="20sp" />
|
2011-03-13 23:45:23 +00:00
|
|
|
<Button
|
|
|
|
android:id="@+id/buttonBrowse"
|
|
|
|
android:padding="15sp"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@+string/browse" />
|
2013-01-27 00:54:03 +00:00
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/buttonKill"
|
|
|
|
android:padding="15sp"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="KILL" />
|
|
|
|
|
2011-03-13 23:45:23 +00:00
|
|
|
</LinearLayout>
|