2023-06-04 01:00:46 +05:30
|
|
|
<?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">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/app_icon"
|
|
|
|
android:layout_width="120dp"
|
|
|
|
android:layout_height="120dp"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout_marginTop="50dp"
|
|
|
|
android:layout_marginBottom="15dp"
|
|
|
|
android:src="@drawable/ic_launcher_lockscreen"
|
|
|
|
app:tint="?attr/colorSecondary"
|
|
|
|
tools:ignore="ContentDescription" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout_marginHorizontal="20dp"
|
|
|
|
android:layout_marginVertical="16dp"
|
|
|
|
android:text="@string/welcome"
|
|
|
|
android:textSize="18sp" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout_marginHorizontal="20dp"
|
2023-06-04 20:12:23 +05:30
|
|
|
android:text="@string/choose_instance_long" />
|
2023-06-04 01:00:46 +05:30
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_marginVertical="10dp"
|
|
|
|
android:layout_weight="1">
|
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/instances_recycler"
|
|
|
|
android:layout_width="match_parent"
|
2023-06-04 20:12:23 +05:30
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:fadeScrollbars="false"
|
|
|
|
android:scrollbars="vertical" />
|
2023-06-04 01:00:46 +05:30
|
|
|
|
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/progress"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center" />
|
|
|
|
|
|
|
|
</FrameLayout>
|
|
|
|
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
android:id="@+id/okay"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="end"
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:layout_marginEnd="15dp"
|
|
|
|
android:layout_marginBottom="5dp"
|
|
|
|
android:alpha="0.5"
|
|
|
|
android:text="@string/okay" />
|
|
|
|
|
|
|
|
</LinearLayout>
|