mirror of
https://github.com/recloudstream/cloudstream.git
synced 2024-08-15 01:53:11 +00:00
66 lines
2.2 KiB
XML
66 lines
2.2 KiB
XML
|
<?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:id="@+id/setup_root"
|
||
|
android:layout_height="match_parent"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:gravity="center">
|
||
|
|
||
|
<ImageView
|
||
|
android:id="@+id/app_icon_image"
|
||
|
android:layout_width="50dp"
|
||
|
android:layout_height="50dp" />
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_margin="20dp"
|
||
|
android:gravity="center"
|
||
|
android:text="@string/app_language"
|
||
|
android:textSize="18sp" />
|
||
|
</LinearLayout>
|
||
|
|
||
|
<ListView
|
||
|
android:id="@+id/listview1"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:layout_rowWeight="1"
|
||
|
android:layout_marginBottom="60dp"
|
||
|
android:paddingTop="10dp"
|
||
|
android:requiresFadingEdge="vertical"
|
||
|
tools:listitem="@layout/sort_bottom_single_choice" />
|
||
|
|
||
|
<LinearLayout
|
||
|
android:id="@+id/apply_btt_holder"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="60dp"
|
||
|
android:layout_gravity="bottom"
|
||
|
android:layout_marginTop="-60dp"
|
||
|
android:gravity="bottom|end"
|
||
|
android:orientation="horizontal">
|
||
|
|
||
|
<com.google.android.material.button.MaterialButton
|
||
|
android:id="@+id/next_btt"
|
||
|
style="@style/WhiteButton"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_gravity="center_vertical|end"
|
||
|
android:text="@string/next" />
|
||
|
|
||
|
<com.google.android.material.button.MaterialButton
|
||
|
android:id="@+id/skip_btt"
|
||
|
style="@style/BlackButton"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_gravity="center_vertical|end"
|
||
|
android:text="@string/skip_setup">
|
||
|
|
||
|
<requestFocus />
|
||
|
</com.google.android.material.button.MaterialButton>
|
||
|
</LinearLayout>
|
||
|
|
||
|
|
||
|
</LinearLayout>
|