2019-06-03 23:25:05 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2020-08-09 10:23:51 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2020-03-04 15:54:21 +01:00
|
|
|
android:background="?attr/primaryBackgroundColor"
|
2019-06-03 23:25:05 +02:00
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<GridView
|
|
|
|
android:id="@+id/gridView"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:padding="10dp"
|
|
|
|
android:horizontalSpacing="10dp"
|
|
|
|
android:numColumns="4"
|
|
|
|
android:columnWidth="80dp"
|
|
|
|
android:stretchMode="columnWidth"
|
|
|
|
android:gravity="center"/>
|
|
|
|
|
2020-08-09 10:23:51 +02:00
|
|
|
<com.google.android.material.progressindicator.ProgressIndicator
|
|
|
|
android:id="@+id/progress_bar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
style="@style/Widget.MaterialComponents.ProgressIndicator.Linear.Indeterminate"
|
|
|
|
app:indicatorColor="?attr/progressIndicatorColor" />
|
|
|
|
|
2019-06-03 23:25:05 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/noDataCollaborators"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_margin="15dp"
|
|
|
|
android:gravity="center"
|
|
|
|
android:text="@string/noDataCollaboratorTab"
|
2020-03-04 15:54:21 +01:00
|
|
|
android:textColor="?attr/primaryTextColor"
|
2019-06-03 23:25:05 +02:00
|
|
|
android:textSize="20sp"
|
2019-09-12 07:21:53 +02:00
|
|
|
android:visibility="gone" />
|
|
|
|
|
2020-08-09 10:23:51 +02:00
|
|
|
</RelativeLayout>
|