2019-08-26 13:54:20 -05:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-07-19 06:30:29 -05:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2019-08-26 13:54:20 -05:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
2021-02-01 04:45:10 -06:00
|
|
|
<com.google.android.material.progressindicator.CircularProgressIndicator
|
2019-08-26 13:54:20 -05:00
|
|
|
android:id="@+id/licenseProgress"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:indeterminate="true" />
|
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/licenseRecycler"
|
|
|
|
android:layout_width="match_parent"
|
2020-07-19 06:30:29 -05:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
tools:listitem="@layout/item_license" />
|
2019-08-26 13:54:20 -05:00
|
|
|
</FrameLayout>
|