49 lines
2.0 KiB
XML
49 lines
2.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout 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"
|
|
tools:context=".DeviceSettingsActivity">
|
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="match_parent">
|
|
|
|
<com.google.android.material.appbar.CollapsingToolbarLayout
|
|
android:id="@+id/collapsing_toolbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="240dp"
|
|
android:background="@android:color/transparent"
|
|
app:layout_scrollFlags="scroll|exitUntilCollapsed|snap"
|
|
app:contentScrim="@android:color/transparent"
|
|
app:toolbarId="@id/action_bar">
|
|
|
|
<ImageView
|
|
android:id="@+id/header"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:src="@drawable/oplus_banner"
|
|
android:fitsSystemWindows="true"
|
|
android:scaleType="fitCenter"
|
|
app:layout_collapseMode="parallax" />
|
|
|
|
<Toolbar
|
|
android:id="@+id/my_toolbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="?attr/actionBarSize"
|
|
android:background="?attr/colorPrimary"
|
|
android:elevation="4dp" />
|
|
|
|
</com.google.android.material.appbar.CollapsingToolbarLayout>
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
|
|
<FrameLayout
|
|
android:id="@+id/content_frame"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginTop="72dp"
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|