summaryrefslogtreecommitdiffstats
path: root/updater_sample/res
diff options
context:
space:
mode:
authorZhomart Mukhamejanov <zhomart@google.com>2018-05-03 20:03:14 +0200
committerandroid-build-merger <android-build-merger@google.com>2018-05-03 20:03:14 +0200
commitd3df835f3f01cfe08257e81d51349931ff185f21 (patch)
tree70415709b602555457438bb5f2e7692ec5910073 /updater_sample/res
parentMerge "screen_ui: Merge Menu::Start() into its ctor." am: 0cabcd0126 (diff)
parentMerge "updater_sample: update ui and README, clean-up" (diff)
downloadandroid_bootable_recovery-d3df835f3f01cfe08257e81d51349931ff185f21.tar
android_bootable_recovery-d3df835f3f01cfe08257e81d51349931ff185f21.tar.gz
android_bootable_recovery-d3df835f3f01cfe08257e81d51349931ff185f21.tar.bz2
android_bootable_recovery-d3df835f3f01cfe08257e81d51349931ff185f21.tar.lz
android_bootable_recovery-d3df835f3f01cfe08257e81d51349931ff185f21.tar.xz
android_bootable_recovery-d3df835f3f01cfe08257e81d51349931ff185f21.tar.zst
android_bootable_recovery-d3df835f3f01cfe08257e81d51349931ff185f21.zip
Diffstat (limited to '')
-rw-r--r--updater_sample/res/layout/activity_main.xml24
1 files changed, 23 insertions, 1 deletions
diff --git a/updater_sample/res/layout/activity_main.xml b/updater_sample/res/layout/activity_main.xml
index 3cd772107..7a12d3474 100644
--- a/updater_sample/res/layout/activity_main.xml
+++ b/updater_sample/res/layout/activity_main.xml
@@ -114,7 +114,7 @@
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:text="Running update status:" />
+ android:text="Update status:" />
<TextView
android:id="@+id/textViewStatus"
@@ -124,6 +124,28 @@
android:text="@string/unknown" />
</LinearLayout>
+
+ <LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_marginTop="4dp"
+ android:orientation="horizontal">
+
+ <TextView
+ android:id="@+id/textView2"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:text="Update completion:" />
+
+ <TextView
+ android:id="@+id/textViewCompletion"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_marginLeft="8dp"
+ android:text="@string/unknown" />
+ </LinearLayout>
+
+
<ProgressBar
android:id="@+id/progressBar"
style="?android:attr/progressBarStyleHorizontal"