47 lines
1.9 KiB
XML
47 lines
1.9 KiB
XML
![]() |
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<android.support.design.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"
|
||
|
android:fitsSystemWindows="true"
|
||
|
tools:context="org.fdroid.fdroid.AppDetails2">
|
||
|
|
||
|
<android.support.design.widget.AppBarLayout
|
||
|
android:id="@+id/app_bar"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="@dimen/app_bar_height"
|
||
|
android:fitsSystemWindows="true"
|
||
|
android:theme="@style/AppThemeLight.AppBarOverlay">
|
||
|
|
||
|
<android.support.design.widget.CollapsingToolbarLayout
|
||
|
android:id="@+id/toolbar_layout"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:fitsSystemWindows="true"
|
||
|
app:contentScrim="?attr/colorPrimary"
|
||
|
app:layout_scrollFlags="scroll|exitUntilCollapsed">
|
||
|
|
||
|
<ImageView
|
||
|
android:id="@+id/backdrop"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:scaleType="centerCrop"
|
||
|
android:fitsSystemWindows="true"
|
||
|
android:src="@drawable/feature_placeholder"
|
||
|
app:layout_collapseMode="parallax" />
|
||
|
|
||
|
<android.support.v7.widget.Toolbar
|
||
|
android:id="@+id/toolbar"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="?attr/actionBarSize"
|
||
|
app:layout_collapseMode="pin"
|
||
|
app:popupTheme="@style/AppThemeLight.PopupOverlay" />
|
||
|
|
||
|
</android.support.design.widget.CollapsingToolbarLayout>
|
||
|
</android.support.design.widget.AppBarLayout>
|
||
|
|
||
|
<include layout="@layout/content_app_details2" />
|
||
|
|
||
|
</android.support.design.widget.CoordinatorLayout>
|