parent
c358d4131f
commit
8bdeb40824
@ -1,61 +1,37 @@ |
|||||||
<?xml version="1.0" encoding="utf-8"?> |
<?xml version="1.0" encoding="utf-8"?> |
||||||
<androidx.coordinatorlayout.widget.CoordinatorLayout 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" |
xmlns:app="http://schemas.android.com/apk/res-auto" |
||||||
xmlns:tools="http://schemas.android.com/tools" |
android:id="@+id/mainLayout" |
||||||
android:layout_width="match_parent" |
android:layout_width="match_parent" |
||||||
android:layout_height="match_parent"> |
android:layout_height="match_parent"> |
||||||
|
|
||||||
<androidx.core.widget.NestedScrollView |
|
||||||
android:id="@+id/nestedScrollView" |
|
||||||
android:layout_width="match_parent" |
|
||||||
android:layout_height="match_parent" |
|
||||||
android:fillViewport="true" |
|
||||||
app:layout_behavior="@string/appbar_scrolling_view_behavior"> |
|
||||||
|
|
||||||
<androidx.constraintlayout.widget.ConstraintLayout |
|
||||||
android:layout_width="match_parent" |
|
||||||
android:layout_height="wrap_content"> |
|
||||||
|
|
||||||
<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" /> |
|
||||||
|
|
||||||
</androidx.constraintlayout.widget.ConstraintLayout> |
|
||||||
|
|
||||||
</androidx.core.widget.NestedScrollView> |
|
||||||
|
|
||||||
<com.google.android.material.appbar.AppBarLayout |
<com.google.android.material.appbar.AppBarLayout |
||||||
android:id="@+id/appBar" |
android:id="@+id/appBar" |
||||||
android:layout_width="match_parent" |
android:layout_width="0dp" |
||||||
android:layout_height="128dp" |
android:layout_height="wrap_content" |
||||||
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"> |
android:theme="@style/PokerAnalyticsTheme.Toolbar.Session" |
||||||
|
app:layout_constraintEnd_toEndOf="parent" |
||||||
<com.google.android.material.appbar.CollapsingToolbarLayout |
app:layout_constraintStart_toStartOf="parent" |
||||||
android:id="@+id/collapsingToolbar" |
app:layout_constraintTop_toTopOf="parent"> |
||||||
|
|
||||||
|
<androidx.appcompat.widget.Toolbar |
||||||
|
android:id="@+id/toolbar" |
||||||
android:layout_width="match_parent" |
android:layout_width="match_parent" |
||||||
android:layout_height="match_parent" |
android:layout_height="?attr/actionBarSize" |
||||||
app:collapsedTitleTextAppearance="@style/PokerAnalyticsTheme.Toolbar.CollapsedTitleAppearance" |
app:layout_constraintEnd_toEndOf="parent" |
||||||
app:contentScrim="?attr/colorPrimary" |
app:layout_constraintStart_toStartOf="parent" |
||||||
app:expandedTitleGravity="bottom" |
app:layout_constraintTop_toTopOf="parent" |
||||||
app:expandedTitleMarginStart="72dp" |
app:title="@string/reports" /> |
||||||
app:expandedTitleTextAppearance="@style/PokerAnalyticsTheme.Toolbar.ExpandedTitleAppearance" |
|
||||||
app:layout_scrollFlags="scroll|exitUntilCollapsed|snap"> |
|
||||||
|
|
||||||
<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.CollapsingToolbarLayout> |
|
||||||
|
|
||||||
</com.google.android.material.appbar.AppBarLayout> |
</com.google.android.material.appbar.AppBarLayout> |
||||||
|
|
||||||
</androidx.coordinatorlayout.widget.CoordinatorLayout> |
<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_toBottomOf="@+id/appBar" /> |
||||||
|
|
||||||
|
</androidx.constraintlayout.widget.ConstraintLayout> |
||||||
Loading…
Reference in new issue