2017-07-17 16:59:22 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical"
|
2017-10-24 21:42:05 +00:00
|
|
|
android:background="@color/flashing_background_color"
|
2017-07-17 16:59:22 +00:00
|
|
|
tools:context="com.topjohnwu.magisk.FlashActivity">
|
|
|
|
|
|
|
|
<include layout="@layout/toolbar"/>
|
|
|
|
|
2018-12-30 18:47:30 +00:00
|
|
|
<HorizontalScrollView
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2017-07-17 16:59:22 +00:00
|
|
|
android:layout_weight="1"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="0dp">
|
|
|
|
|
2018-12-30 18:47:30 +00:00
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/recyclerView"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:paddingStart="8dp"
|
|
|
|
android:paddingEnd="8dp"
|
|
|
|
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager" />
|
2017-07-17 16:59:22 +00:00
|
|
|
|
2018-12-30 18:47:30 +00:00
|
|
|
</HorizontalScrollView>
|
2017-07-17 16:59:22 +00:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/button_panel"
|
|
|
|
style="?android:buttonStyle"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:visibility="gone">
|
|
|
|
|
|
|
|
<Button
|
2018-09-29 04:28:12 +00:00
|
|
|
android:id="@+id/close"
|
2017-07-17 16:59:22 +00:00
|
|
|
style="?android:borderlessButtonStyle"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="50dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:text="@string/close" />
|
|
|
|
|
2017-11-17 19:55:47 +00:00
|
|
|
<Button
|
|
|
|
android:id="@+id/save_logs"
|
|
|
|
style="?android:borderlessButtonStyle"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="50dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:text="@string/menuSaveLog" />
|
|
|
|
|
2017-07-17 16:59:22 +00:00
|
|
|
<Button
|
|
|
|
android:id="@+id/reboot"
|
|
|
|
style="?android:borderlessButtonStyle"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="50dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:text="@string/reboot" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|