diff options
author | Zhomart Mukhamejanov <zhomart@google.com> | 2018-05-18 19:15:31 +0200 |
---|---|---|
committer | Zhomart Mukhamejanov <zhomart@google.com> | 2018-05-25 18:25:34 +0200 |
commit | 8f4059d6038931300e283be88ca739450091da7c (patch) | |
tree | d1e02402fdc712d7e1e583772e0d650a9bf61c3f /updater_sample/res/layout | |
parent | Merge "tests: Setup last_command_file for UpdaterTest." (diff) | |
download | android_bootable_recovery-8f4059d6038931300e283be88ca739450091da7c.tar android_bootable_recovery-8f4059d6038931300e283be88ca739450091da7c.tar.gz android_bootable_recovery-8f4059d6038931300e283be88ca739450091da7c.tar.bz2 android_bootable_recovery-8f4059d6038931300e283be88ca739450091da7c.tar.lz android_bootable_recovery-8f4059d6038931300e283be88ca739450091da7c.tar.xz android_bootable_recovery-8f4059d6038931300e283be88ca739450091da7c.tar.zst android_bootable_recovery-8f4059d6038931300e283be88ca739450091da7c.zip |
Diffstat (limited to 'updater_sample/res/layout')
-rw-r--r-- | updater_sample/res/layout/activity_main.xml | 29 |
1 files changed, 24 insertions, 5 deletions
diff --git a/updater_sample/res/layout/activity_main.xml b/updater_sample/res/layout/activity_main.xml index d9e56b4b3..7cde42cec 100644 --- a/updater_sample/res/layout/activity_main.xml +++ b/updater_sample/res/layout/activity_main.xml @@ -111,19 +111,38 @@ android:orientation="horizontal"> <TextView - android:id="@+id/textView" + android:id="@+id/textView3" android:layout_width="wrap_content" android:layout_height="wrap_content" - android:text="Update status:" /> + android:text="Updater state:" /> <TextView - android:id="@+id/textViewStatus" + android:id="@+id/textViewUpdaterState" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="8dp" 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/textView" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="Engine status:" /> + + <TextView + android:id="@+id/textViewEngineStatus" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_marginLeft="8dp" + android:text="@string/unknown" /> + </LinearLayout> <LinearLayout android:layout_width="match_parent" @@ -135,10 +154,10 @@ android:id="@+id/textView2" android:layout_width="wrap_content" android:layout_height="wrap_content" - android:text="Update completion:" /> + android:text="Engine error:" /> <TextView - android:id="@+id/textViewCompletion" + android:id="@+id/textViewEngineErrorCode" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="8dp" |