diff options
author | Zhomart Mukhamejanov <zhomart@google.com> | 2018-05-03 19:58:13 +0200 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2018-05-03 19:58:13 +0200 |
commit | c36f5ff1c7409946f5c715493d784d4604269c26 (patch) | |
tree | 81c1a71270098123ebfd4ed68025613db2d1a557 /updater_sample/res/layout | |
parent | Merge "screen_ui: Merge Menu::Start() into its ctor." (diff) | |
parent | Merge "updater_sample: update ui and README, clean-up" (diff) | |
download | android_bootable_recovery-c36f5ff1c7409946f5c715493d784d4604269c26.tar android_bootable_recovery-c36f5ff1c7409946f5c715493d784d4604269c26.tar.gz android_bootable_recovery-c36f5ff1c7409946f5c715493d784d4604269c26.tar.bz2 android_bootable_recovery-c36f5ff1c7409946f5c715493d784d4604269c26.tar.lz android_bootable_recovery-c36f5ff1c7409946f5c715493d784d4604269c26.tar.xz android_bootable_recovery-c36f5ff1c7409946f5c715493d784d4604269c26.tar.zst android_bootable_recovery-c36f5ff1c7409946f5c715493d784d4604269c26.zip |
Diffstat (limited to 'updater_sample/res/layout')
-rw-r--r-- | updater_sample/res/layout/activity_main.xml | 24 |
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" |