wulkanowy-mod/app/src/main/res/layout/fragment_contributor.xml

38 lines
1.5 KiB
XML
Raw Normal View History

2020-01-22 03:59:13 -06:00
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
2020-09-27 13:59:27 -05:00
xmlns:tools="http://schemas.android.com/tools"
2020-01-22 03:59:13 -06:00
android:layout_width="match_parent"
2020-03-03 15:20:57 -06:00
android:layout_height="match_parent">
2020-01-22 03:59:13 -06:00
<com.google.android.material.progressindicator.CircularProgressIndicator
2020-01-22 03:59:13 -06:00
android:id="@+id/creatorProgress"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:indeterminate="true" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/creatorRecycler"
android:layout_width="match_parent"
android:layout_height="0dp"
2020-09-27 13:59:27 -05:00
android:layout_weight="1"
tools:listitem="@layout/item_contributor" />
2020-01-22 03:59:13 -06:00
<com.google.android.material.button.MaterialButton
android:id="@+id/creatorSeeMore"
2020-09-27 13:59:27 -05:00
style="@style/Widget.MaterialComponents.Button.OutlinedButton"
2020-01-22 03:59:13 -06:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="32dp"
2020-09-27 13:59:27 -05:00
android:layout_marginTop="8dp"
2020-01-22 03:59:13 -06:00
android:layout_marginRight="32dp"
2020-09-27 13:59:27 -05:00
android:layout_marginBottom="8dp"
2020-03-03 15:20:57 -06:00
android:text="@string/contributor_see_more" />
2020-01-22 03:59:13 -06:00
</LinearLayout>
</FrameLayout>