This commit is contained in:
topjohnwu 2018-09-29 00:28:12 -04:00
parent b127e01845
commit 4f626897f2
3 changed files with 2 additions and 6 deletions

View File

@ -42,10 +42,6 @@ public class FlashActivity extends BaseActivity {
private List<String> logs;
void dismiss() {
finish();
}
void reboot() {
Shell.su("/system/bin/reboot").submit();
}

View File

@ -52,7 +52,7 @@ public class ViewBinder {
target.sv = target.findViewById(R.id.scrollView);
target.reboot = target.findViewById(R.id.reboot);
target.reboot.setOnClickListener(v -> target.reboot());
target.findViewById(R.id.no_thanks).setOnClickListener(v -> target.finish());
target.findViewById(R.id.close).setOnClickListener(v -> target.finish());
target.findViewById(R.id.save_logs).setOnClickListener(v -> target.saveLogs());
}

View File

@ -42,7 +42,7 @@
android:visibility="gone">
<Button
android:id="@+id/no_thanks"
android:id="@+id/close"
style="?android:borderlessButtonStyle"
android:layout_width="0dp"
android:layout_height="50dp"