Add a progress bar to display upload progress, instead of just text

Change-Id: Id858ce3e508031435f7ceda3b2ffe2372b0c5510
GitHub: https://github.com/wikimedia/apps-android-commons/pull/11
This commit is contained in:
YuviPanda 2013-06-17 15:13:57 +00:00 committed by Gerrit Code Review
parent 0d70ec6f80
commit b0bc8d0532
4 changed files with 23 additions and 8 deletions

View file

@ -30,6 +30,15 @@
android:orientation="vertical"
android:padding="8dp"
>
<ProgressBar
android:id="@+id/contributionProgress"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
style="@style/ProgressBar"
android:indeterminateOnly="false"
android:max="100"
android:visibility="gone"
/>
<TextView
android:id="@+id/contributionState"