|
|
|
|
@ -1,10 +1,29 @@ |
|
|
|
|
<?xml version="1.0" encoding="utf-8"?> |
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout |
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android" |
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" |
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto" |
|
|
|
|
android:layout_width="match_parent" |
|
|
|
|
android:layout_height="match_parent"> |
|
|
|
|
|
|
|
|
|
<com.google.android.material.appbar.AppBarLayout |
|
|
|
|
android:id="@+id/appBar" |
|
|
|
|
android:layout_width="0dp" |
|
|
|
|
android:layout_height="wrap_content" |
|
|
|
|
android:theme="@style/PokerAnalyticsTheme.Toolbar.Session" |
|
|
|
|
app:layout_constraintEnd_toEndOf="parent" |
|
|
|
|
app:layout_constraintStart_toStartOf="parent" |
|
|
|
|
app:layout_constraintTop_toTopOf="parent"> |
|
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.Toolbar |
|
|
|
|
android:id="@+id/toolbar" |
|
|
|
|
android:layout_width="match_parent" |
|
|
|
|
android:layout_height="?attr/actionBarSize" |
|
|
|
|
app:layout_constraintEnd_toEndOf="parent" |
|
|
|
|
app:layout_constraintStart_toStartOf="parent" |
|
|
|
|
app:layout_constraintTop_toTopOf="parent" |
|
|
|
|
app:title="@string/stats" /> |
|
|
|
|
|
|
|
|
|
</com.google.android.material.appbar.AppBarLayout> |
|
|
|
|
|
|
|
|
|
<FrameLayout |
|
|
|
|
android:id="@+id/tableContainer" |
|
|
|
|
android:layout_width="0dp" |
|
|
|
|
@ -12,15 +31,6 @@ |
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent" |
|
|
|
|
app:layout_constraintEnd_toEndOf="parent" |
|
|
|
|
app:layout_constraintStart_toStartOf="parent" |
|
|
|
|
app:layout_constraintTop_toTopOf="parent" /> |
|
|
|
|
|
|
|
|
|
<!--<androidx.recyclerview.widget.RecyclerView--> |
|
|
|
|
<!--android:id="@+id/recyclerView"--> |
|
|
|
|
<!--android:layout_width="0dp"--> |
|
|
|
|
<!--android:layout_height="0dp"--> |
|
|
|
|
<!--app:layout_constraintBottom_toBottomOf="parent"--> |
|
|
|
|
<!--app:layout_constraintEnd_toEndOf="parent"--> |
|
|
|
|
<!--app:layout_constraintStart_toStartOf="parent"--> |
|
|
|
|
<!--app:layout_constraintTop_toTopOf="parent" />--> |
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/appBar" /> |
|
|
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |