forked from github/wulkanowy-mirror
70 lines
2.8 KiB
XML
70 lines
2.8 KiB
XML
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
tools:context=".ui.modules.panicmode.PanicModeFragment">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="?colorControlHighlight">
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
android:id="@+id/panic_mode_share"
|
|
style="@style/Widget.Material3.Button.IconButton"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="end"
|
|
app:icon="@drawable/ic_share"
|
|
app:iconTint="?colorOnSurface" />
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
android:id="@+id/panic_mode_home"
|
|
style="@style/Widget.Material3.Button.IconButton"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="end"
|
|
app:icon="@drawable/ic_all_home"
|
|
app:iconTint="?colorOnSurface" />
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
android:id="@+id/panic_mode_refresh"
|
|
style="@style/Widget.Material3.Button.IconButton"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="end"
|
|
android:contentDescription="@string/logviewer_refresh"
|
|
app:icon="@drawable/ic_refresh"
|
|
app:iconTint="?colorOnSurface" />
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
android:id="@+id/panic_mode_back"
|
|
style="@style/Widget.Material3.Button.IconButton"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="end"
|
|
app:icon="@drawable/ic_chevron_left"
|
|
app:iconTint="?colorOnSurface" />
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
android:id="@+id/panic_mode_forward"
|
|
style="@style/Widget.Material3.Button.IconButton"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="end"
|
|
app:icon="@drawable/ic_chevron_right"
|
|
app:iconTint="?colorOnSurface" />
|
|
</LinearLayout>
|
|
|
|
<WebView
|
|
android:id="@+id/panic_mode_webview"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
</LinearLayout>
|