2021-07-05 16:38:28 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout 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:background="#000000"
|
|
|
|
android:id="@+id/coordinator_layout_rpan_activity"
|
2021-07-06 02:36:53 +02:00
|
|
|
android:keepScreenOn="true"
|
2021-07-05 16:38:28 +02:00
|
|
|
tools:context=".activities.RPANActivity">
|
|
|
|
|
|
|
|
<androidx.viewpager2.widget.ViewPager2
|
|
|
|
android:id="@+id/view_pager_2_rpan_activity"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" />
|
|
|
|
|
2021-07-06 02:36:53 +02:00
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/progress_bar_rpan_activity"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center" />
|
|
|
|
|
2021-07-05 16:38:28 +02:00
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|