|
|
|
@ -5,6 +5,23 @@ |
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_height="match_parent"> |
|
|
|
android:layout_height="match_parent"> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<com.google.android.material.appbar.AppBarLayout |
|
|
|
|
|
|
|
android:id="@+id/appBar" |
|
|
|
|
|
|
|
android:layout_width="match_parent" |
|
|
|
|
|
|
|
android:layout_height="wrap_content" |
|
|
|
|
|
|
|
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.Toolbar |
|
|
|
|
|
|
|
android:id="@+id/toolbar" |
|
|
|
|
|
|
|
android:layout_width="match_parent" |
|
|
|
|
|
|
|
android:layout_height="?attr/actionBarSize" |
|
|
|
|
|
|
|
app:layout_collapseMode="pin" |
|
|
|
|
|
|
|
app:title="Poker Analytics" |
|
|
|
|
|
|
|
app:titleTextColor="@color/white" /> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</com.google.android.material.appbar.AppBarLayout> |
|
|
|
|
|
|
|
|
|
|
|
<androidx.core.widget.NestedScrollView |
|
|
|
<androidx.core.widget.NestedScrollView |
|
|
|
android:id="@+id/nestedScrollView" |
|
|
|
android:id="@+id/nestedScrollView" |
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_width="match_parent" |
|
|
|
@ -29,33 +46,74 @@ |
|
|
|
|
|
|
|
|
|
|
|
</androidx.core.widget.NestedScrollView> |
|
|
|
</androidx.core.widget.NestedScrollView> |
|
|
|
|
|
|
|
|
|
|
|
<com.google.android.material.appbar.AppBarLayout |
|
|
|
<com.google.android.material.bottomappbar.BottomAppBar |
|
|
|
android:id="@+id/appBar" |
|
|
|
|
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_height="128dp" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"> |
|
|
|
android:layout_gravity="bottom"> |
|
|
|
|
|
|
|
|
|
|
|
<com.google.android.material.appbar.CollapsingToolbarLayout |
|
|
|
<FrameLayout |
|
|
|
android:id="@+id/collapsingToolbar" |
|
|
|
|
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_height="match_parent" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
app:collapsedTitleTextAppearance="@style/PokerAnalyticsTheme.Toolbar.CollapsedTitleAppearance" |
|
|
|
android:paddingTop="8dp" |
|
|
|
app:contentScrim="?attr/colorPrimary" |
|
|
|
android:paddingBottom="8dp"> |
|
|
|
app:expandedTitleGravity="bottom" |
|
|
|
|
|
|
|
app:expandedTitleMarginStart="72dp" |
|
|
|
|
|
|
|
app:expandedTitleTextAppearance="@style/PokerAnalyticsTheme.Toolbar.ExpandedTitleAppearance" |
|
|
|
|
|
|
|
app:layout_scrollFlags="scroll|exitUntilCollapsed|snap"> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.Toolbar |
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout |
|
|
|
android:id="@+id/toolbar" |
|
|
|
|
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_height="?attr/actionBarSize" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
app:layout_collapseMode="pin" |
|
|
|
android:orientation="horizontal"> |
|
|
|
app:title="Poker Analytics" |
|
|
|
|
|
|
|
app:titleTextColor="@color/white" /> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</com.google.android.material.appbar.CollapsingToolbarLayout> |
|
|
|
<com.google.android.material.chip.ChipGroup |
|
|
|
|
|
|
|
android:id="@+id/filtersTime" |
|
|
|
|
|
|
|
android:layout_width="0dp" |
|
|
|
|
|
|
|
android:layout_height="wrap_content" |
|
|
|
|
|
|
|
android:layout_gravity="center_vertical" |
|
|
|
|
|
|
|
android:layout_marginStart="8dp" |
|
|
|
|
|
|
|
android:layout_marginEnd="8dp" |
|
|
|
|
|
|
|
app:chipSpacing="8dp" |
|
|
|
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent" |
|
|
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent" |
|
|
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent" |
|
|
|
|
|
|
|
app:layout_constraintTop_toTopOf="parent" |
|
|
|
|
|
|
|
app:singleSelection="true"> |
|
|
|
|
|
|
|
|
|
|
|
</com.google.android.material.appbar.AppBarLayout> |
|
|
|
<com.google.android.material.chip.Chip |
|
|
|
|
|
|
|
android:id="@+id/filter1" |
|
|
|
|
|
|
|
android:layout_width="wrap_content" |
|
|
|
|
|
|
|
android:layout_height="wrap_content" |
|
|
|
|
|
|
|
android:text="Filter 1" /> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<com.google.android.material.chip.Chip |
|
|
|
|
|
|
|
android:id="@+id/filter2" |
|
|
|
|
|
|
|
android:layout_width="wrap_content" |
|
|
|
|
|
|
|
android:layout_height="wrap_content" |
|
|
|
|
|
|
|
android:text="Filter 2" /> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<com.google.android.material.chip.Chip |
|
|
|
|
|
|
|
android:id="@+id/filter3" |
|
|
|
|
|
|
|
android:layout_width="wrap_content" |
|
|
|
|
|
|
|
android:layout_height="wrap_content" |
|
|
|
|
|
|
|
android:text="Filter 3" /> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<com.google.android.material.chip.Chip |
|
|
|
|
|
|
|
android:id="@+id/filter4" |
|
|
|
|
|
|
|
android:layout_width="wrap_content" |
|
|
|
|
|
|
|
android:layout_height="wrap_content" |
|
|
|
|
|
|
|
android:text="Filter 4" /> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<com.google.android.material.chip.Chip |
|
|
|
|
|
|
|
android:id="@+id/filter5" |
|
|
|
|
|
|
|
android:layout_width="wrap_content" |
|
|
|
|
|
|
|
android:layout_height="wrap_content" |
|
|
|
|
|
|
|
android:text="Filter 5" /> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</com.google.android.material.chip.ChipGroup> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</FrameLayout> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</com.google.android.material.bottomappbar.BottomAppBar> |
|
|
|
|
|
|
|
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout> |
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout> |