143 lines
5.8 KiB
XML
143 lines
5.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<ScrollView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="top"
|
|
android:orientation="vertical"
|
|
tools:ignore="MissingConstraints">
|
|
|
|
<ImageView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:background="@drawable/ic_app_icon"
|
|
android:scaleType="center" />
|
|
|
|
<TextView
|
|
android:id="@+id/terminal"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/terminal"
|
|
android:textStyle="bold"
|
|
android:clickable="true"
|
|
android:focusable="true"
|
|
android:background="?android:attr/selectableItemBackground"
|
|
android:paddingHorizontal="15dp"
|
|
android:paddingVertical="15dp"
|
|
android:drawablePadding="35dp"
|
|
android:textSize="16sp"
|
|
app:drawableStartCompat="@drawable/ic_terminal" />
|
|
|
|
<TextView
|
|
android:id="@+id/logs"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/logs"
|
|
android:textStyle="bold"
|
|
android:clickable="true"
|
|
android:focusable="true"
|
|
android:background="?android:attr/selectableItemBackground"
|
|
android:paddingHorizontal="15dp"
|
|
android:paddingVertical="15dp"
|
|
android:drawablePadding="35dp"
|
|
android:textSize="16sp"
|
|
app:drawableStartCompat="@drawable/ic_baseline_file_open_24" />
|
|
|
|
|
|
<TextView
|
|
android:id="@+id/command_templates"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:drawablePadding="35dp"
|
|
android:textSize="16sp"
|
|
android:paddingVertical="15dp"
|
|
android:text="@string/command_templates"
|
|
android:textStyle="bold"
|
|
android:clickable="true"
|
|
android:focusable="true"
|
|
android:background="?android:attr/selectableItemBackground"
|
|
android:paddingHorizontal="15dp"
|
|
app:drawableStartCompat="@drawable/ic_baseline_keyboard_arrow_right_24" />
|
|
|
|
<TextView
|
|
android:id="@+id/download_queue"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:drawablePadding="35dp"
|
|
android:textSize="16sp"
|
|
android:paddingVertical="15dp"
|
|
android:text="@string/download_queue"
|
|
android:textStyle="bold"
|
|
android:clickable="true"
|
|
android:focusable="true"
|
|
android:background="?android:attr/selectableItemBackground"
|
|
android:paddingHorizontal="15dp"
|
|
app:drawableTint="?android:colorAccent"
|
|
app:drawableStartCompat="@drawable/baseline_downloading_24" />
|
|
|
|
<TextView
|
|
android:id="@+id/cookies"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:drawablePadding="35dp"
|
|
android:textSize="16sp"
|
|
android:paddingVertical="15dp"
|
|
android:text="@string/cookies"
|
|
android:textStyle="bold"
|
|
android:clickable="true"
|
|
android:focusable="true"
|
|
android:background="?android:attr/selectableItemBackground"
|
|
android:paddingHorizontal="15dp"
|
|
app:drawableStartCompat="@drawable/baseline_cookie_24" />
|
|
|
|
<TextView
|
|
android:id="@+id/terminate"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:drawablePadding="35dp"
|
|
android:textSize="16sp"
|
|
android:clickable="true"
|
|
android:focusable="true"
|
|
android:background="?android:attr/selectableItemBackground"
|
|
android:paddingVertical="15dp"
|
|
android:text="@string/kill_app"
|
|
android:textStyle="bold"
|
|
android:paddingHorizontal="15dp"
|
|
app:drawableStartCompat="@drawable/ic_power" />
|
|
|
|
|
|
<View
|
|
android:layout_margin="0dp"
|
|
style="@style/Divider.Horizontal" />
|
|
|
|
<TextView
|
|
android:id="@+id/settings"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:drawablePadding="35dp"
|
|
android:textSize="16sp"
|
|
android:paddingVertical="15dp"
|
|
android:text="@string/settings"
|
|
android:textStyle="bold"
|
|
android:clickable="true"
|
|
android:focusable="true"
|
|
android:background="?android:attr/selectableItemBackground"
|
|
android:paddingHorizontal="15dp"
|
|
app:drawableStartCompat="@drawable/ic_settings" />
|
|
|
|
</LinearLayout>
|
|
|
|
</ScrollView>
|
|
|
|
|
|
</RelativeLayout>
|