66 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			66 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?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"
 | |
|     android:theme="@style/Theme.Beans"
 | |
|     tools:context=".activity.StatsActivity">
 | |
| 
 | |
|     <com.google.android.material.tabs.TabLayout
 | |
|         android:id="@+id/tab"
 | |
|         android:layout_width="match_parent"
 | |
|         android:layout_height="wrap_content" />
 | |
| 
 | |
|     <androidx.viewpager2.widget.ViewPager2
 | |
|         android:id="@+id/pager"
 | |
|         android:layout_width="match_parent"
 | |
|         android:layout_height="0dp"
 | |
|         android:layout_weight="1"
 | |
|         android:visibility="gone" />
 | |
| 
 | |
|     <androidx.constraintlayout.widget.ConstraintLayout
 | |
|         android:layout_width="match_parent"
 | |
|         android:layout_height="wrap_content"
 | |
|         android:paddingBottom="10dp">
 | |
| 
 | |
|         <com.google.android.material.button.MaterialButton
 | |
|             android:id="@+id/group_color"
 | |
|             android:layout_width="0dp"
 | |
|             android:layout_height="wrap_content"
 | |
|             android:layout_marginTop="2dp"
 | |
|             android:layout_marginBottom="2dp"
 | |
|             android:paddingStart="56dp"
 | |
|             android:text="@string/total"
 | |
|             android:textAlignment="textStart"
 | |
|             android:textColor="?attr/colorOnPrimary"
 | |
|             app:cornerRadius="0dp"
 | |
|             app:layout_constraintBottom_toBottomOf="parent"
 | |
|             app:layout_constraintEnd_toEndOf="parent"
 | |
|             app:layout_constraintStart_toStartOf="parent"
 | |
|             app:layout_constraintTop_toTopOf="parent"
 | |
|             tools:ignore="RtlSymmetry" />
 | |
| 
 | |
|         <com.google.android.material.textview.MaterialTextView
 | |
|             android:id="@+id/name"
 | |
|             android:layout_width="wrap_content"
 | |
|             android:layout_height="50dp"
 | |
|             android:gravity="start|center_vertical"
 | |
|             android:paddingStart="20dp"
 | |
|             android:paddingEnd="52dp"
 | |
|             android:text=""
 | |
|             android:textColor="?attr/colorOnPrimary"
 | |
|             app:layout_constraintBottom_toBottomOf="@id/group_color"
 | |
|             app:layout_constraintEnd_toEndOf="@id/group_color"
 | |
|             app:layout_constraintTop_toTopOf="@id/group_color" />
 | |
| 
 | |
|     </androidx.constraintlayout.widget.ConstraintLayout>
 | |
| 
 | |
| 
 | |
|     <androidx.recyclerview.widget.RecyclerView
 | |
|         android:id="@+id/stats"
 | |
|         android:layout_width="match_parent"
 | |
|         android:layout_height="wrap_content" />
 | |
| 
 | |
| </LinearLayout> |