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"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
2010-07-25 22:32:54 +00:00
|
|
|
android:padding="10sp"
|
2010-07-19 04:46:02 +00:00
|
|
|
>
|
|
|
|
<TextView
|
2010-07-24 18:09:35 +00:00
|
|
|
android:id="@+id/textStatus"
|
2010-07-19 04:46:02 +00:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2010-07-24 18:09:35 +00:00
|
|
|
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"
|
|
|
|
>
|
2010-07-25 22:32:54 +00:00
|
|
|
<Button android:id="@+id/buttonToggle" android:padding="15sp"
|
|
|
|
android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@+string/pause_resume"></Button>
|
2010-07-24 18:09:35 +00:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/textBlobsRemain"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="Blobs Remaining: --"
|
2010-07-19 04:46:02 +00:00
|
|
|
/>
|
2010-07-24 19:15:22 +00:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/textUploadStatus"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2010-07-24 21:25:29 +00:00
|
|
|
android:text="[status detail]"
|
2010-07-24 19:15:22 +00:00
|
|
|
/>
|
|
|
|
|
2010-07-24 21:25:29 +00:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/textByteStatus"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="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="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"
|
|
|
|
/>
|
|
|
|
|
2010-07-19 04:46:02 +00:00
|
|
|
</LinearLayout>
|
2010-07-24 19:15:22 +00:00
|
|
|
|