mirror of
https://gitlab.futo.org/videostreaming/grayjay.git
synced 2026-05-16 04:52:39 +02:00
89 lines
3.3 KiB
XML
89 lines
3.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<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"
|
|
android:paddingStart="20dp"
|
|
android:paddingEnd="20dp"
|
|
android:background="@color/black">
|
|
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:gravity="center_vertical"
|
|
android:paddingTop="20dp"
|
|
android:paddingBottom="15dp">
|
|
|
|
<ImageButton
|
|
android:id="@+id/button_back"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:paddingRight="20dp"
|
|
app:srcCompat="@drawable/ic_back_thin_white_16dp" />
|
|
|
|
<FrameLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/settings"
|
|
android:textSize="24dp"
|
|
android:textColor="@color/white"
|
|
android:fontFamily="@font/inter_extra_light" />
|
|
</FrameLayout>
|
|
|
|
<Space
|
|
android:layout_width="20dp"
|
|
android:layout_height="match_parent" />
|
|
|
|
</LinearLayout>
|
|
|
|
<ScrollView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<LinearLayout
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
<com.futo.platformplayer.views.Loader
|
|
android:id="@+id/loader"
|
|
android:layout_marginBottom="15dp"
|
|
android:layout_marginTop="15dp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="60dp" />
|
|
|
|
<com.futo.platformplayer.views.fields.FieldForm
|
|
android:id="@+id/settings_form"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content" />
|
|
|
|
<LinearLayout
|
|
android:id="@+id/dev_settings"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textColor="@color/white"
|
|
android:textSize="14dp"
|
|
android:textAlignment="center"
|
|
android:layout_margin="5dp"
|
|
android:text="You're apparantly a developer" />
|
|
<com.google.android.material.button.MaterialButton
|
|
android:id="@+id/button_dev"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="Developer Settings" />
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
|
|
</ScrollView>
|
|
</LinearLayout> |