|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android" |
|
xmlns:app="http://schemas.android.com/apk/res-auto" |
|
android:id="@+id/main_content" |
|
android:layout_width="match_parent" |
|
android:layout_height="match_parent"> |
|
|
|
<LinearLayout |
|
android:id="@+id/mylin" |
|
android:layout_width="match_parent" |
|
android:layout_height="50dp" |
|
android:background="#2196F3" |
|
android:orientation="vertical" |
|
app:layout_behavior="@string/appbar_scrolling_view_behavior"> |
|
|
|
</LinearLayout> |
|
|
|
<androidx.core.widget.NestedScrollView |
|
android:layout_width="match_parent" |
|
android:layout_height="match_parent" |
|
app:layout_behavior="@string/appbar_scrolling_view_behavior"> |
|
|
|
<TextView |
|
android:layout_width="wrap_content" |
|
android:layout_height="wrap_content" |
|
android:layout_gravity="center" |
|
android:scrollbarSize="15sp" |
|
android:text="Long content" /> |
|
|
|
</androidx.core.widget.NestedScrollView> |
|
|
|
<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/my_toolbar" |
|
android:layout_width="match_parent" |
|
android:layout_height="?attr/actionBarSize" |
|
android:elevation="4dp" |
|
android:theme="@style/ThemeOverlay.AppCompat.ActionBar" |
|
app:layout_scrollFlags="scroll|enterAlways" |
|
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" /> |
|
|
|
</com.google.android.material.appbar.AppBarLayout> |
|
</androidx.coordinatorlayout.widget.CoordinatorLayout> |