diff options
author | Jerry Zhang <zhangjerry@google.com> | 2018-05-07 20:21:10 +0200 |
---|---|---|
committer | Jerry Zhang <zhangjerry@google.com> | 2018-05-22 01:37:07 +0200 |
commit | 0e577ee424acf7a5e6600560d702ab3c8020a29f (patch) | |
tree | 5188fa84f7382e2a4c328d57a1b2b019083b6133 /screen_ui.cpp | |
parent | Merge "Move stuff from recovery into librecovery." (diff) | |
download | android_bootable_recovery-0e577ee424acf7a5e6600560d702ab3c8020a29f.tar android_bootable_recovery-0e577ee424acf7a5e6600560d702ab3c8020a29f.tar.gz android_bootable_recovery-0e577ee424acf7a5e6600560d702ab3c8020a29f.tar.bz2 android_bootable_recovery-0e577ee424acf7a5e6600560d702ab3c8020a29f.tar.lz android_bootable_recovery-0e577ee424acf7a5e6600560d702ab3c8020a29f.tar.xz android_bootable_recovery-0e577ee424acf7a5e6600560d702ab3c8020a29f.tar.zst android_bootable_recovery-0e577ee424acf7a5e6600560d702ab3c8020a29f.zip |
Diffstat (limited to 'screen_ui.cpp')
-rw-r--r-- | screen_ui.cpp | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/screen_ui.cpp b/screen_ui.cpp index fd7a1bea5..f1b38781a 100644 --- a/screen_ui.cpp +++ b/screen_ui.cpp @@ -496,6 +496,10 @@ int ScreenRecoveryUI::DrawWrappedTextLines(int x, int y, return offset; } +void ScreenRecoveryUI::SetTitle(const std::vector<std::string>& lines) { + title_lines_ = lines; +} + // Redraws everything on the screen. Does not flip pages. Should only be called with updateMutex // locked. void ScreenRecoveryUI::draw_screen_locked() { @@ -529,11 +533,9 @@ void ScreenRecoveryUI::draw_menu_and_text_buffer_locked( int x = kMarginWidth + kMenuIndent; SetColor(INFO); - y += DrawTextLine(x, y, "Android Recovery", true); - std::string recovery_fingerprint = - android::base::GetProperty("ro.bootimage.build.fingerprint", ""); - for (const auto& chunk : android::base::Split(recovery_fingerprint, ":")) { - y += DrawTextLine(x, y, chunk, false); + + for (size_t i = 0; i < title_lines_.size(); i++) { + y += DrawTextLine(x, y, title_lines_[i], i == 0); } y += DrawTextLines(x, y, help_message); |