github.com/olivere/camlistore@v0.0.0-20140121221811-1b7ac2da0199/clients/android/res/layout/main.xml (about) 1 <?xml version="1.0" encoding="utf-8"?> 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 android:layout_width="fill_parent" 4 android:layout_height="fill_parent" 5 android:orientation="vertical" 6 android:padding="10sp" > 7 8 <TextView 9 android:id="@+id/textStatus" 10 android:layout_width="fill_parent" 11 android:layout_height="wrap_content" 12 android:text="Camlistore Uploader" /> 13 14 <LinearLayout 15 android:layout_width="fill_parent" 16 android:layout_height="wrap_content" 17 android:gravity="center_horizontal" 18 android:orientation="horizontal" 19 android:padding="5px" > 20 21 <Button 22 android:id="@+id/buttonToggle" 23 android:layout_width="wrap_content" 24 android:layout_height="wrap_content" 25 android:padding="15sp" 26 android:text="@+string/pause_resume" /> 27 </LinearLayout> 28 29 <TextView 30 android:id="@+id/textBlobsRemain" 31 android:layout_width="fill_parent" 32 android:layout_height="wrap_content" 33 android:text="@+string/blobs_remaining" /> 34 35 <TextView 36 android:id="@+id/textUploadStatus" 37 android:layout_width="fill_parent" 38 android:layout_height="wrap_content" 39 android:text="@+string/status_detail" /> 40 41 <TextView 42 android:id="@+id/textByteStatus" 43 android:layout_width="fill_parent" 44 android:layout_height="wrap_content" 45 android:text="@+string/bytes_uploaded" /> 46 47 <ProgressBar 48 android:id="@+id/progressByteStatus" 49 style="?android:attr/progressBarStyleHorizontal" 50 android:layout_width="fill_parent" 51 android:layout_height="20sp" 52 android:indeterminate="false" 53 android:indeterminateOnly="false" 54 android:minHeight="20sp" /> 55 56 <TextView 57 android:id="@+id/textFileStatus" 58 android:layout_width="fill_parent" 59 android:layout_height="wrap_content" 60 android:text="@+string/files_uploaded" /> 61 62 <ProgressBar 63 android:id="@+id/progressFileStatus" 64 style="?android:attr/progressBarStyleHorizontal" 65 android:layout_width="fill_parent" 66 android:layout_height="20sp" 67 android:indeterminate="false" 68 android:indeterminateOnly="false" 69 android:minHeight="20sp" /> 70 71 <TextView 72 android:id="@+id/textStats" 73 android:layout_width="fill_parent" 74 android:layout_height="wrap_content" 75 android:text="" /> 76 77 </LinearLayout>