61 lines
2.6 KiB
XML
61 lines
2.6 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:background="?attr/appDetailsBackground"
|
|
android:id="@+id/rootCoordinator"
|
|
>
|
|
|
|
<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:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:fitsSystemWindows="true"
|
|
app:contentScrim="?attr/colorPrimary"
|
|
app:layout_scrollFlags="scroll|exitUntilCollapsed">
|
|
|
|
<org.fdroid.fdroid.views.apps.FeatureImage
|
|
android:id="@+id/feature_graphic"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:scaleType="centerCrop"
|
|
android:fitsSystemWindows="true"
|
|
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>
|
|
|
|
<android.support.v7.widget.RecyclerView
|
|
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:id="@+id/rvDetails"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior"
|
|
app:behavior_overlapTop="40dp"
|
|
app:layoutManager="LinearLayoutManager"
|
|
tools:context="org.fdroid.fdroid.AppDetails2"
|
|
tools:showIn="@layout/app_details2"
|
|
>
|
|
</android.support.v7.widget.RecyclerView>
|
|
|
|
</android.support.design.widget.CoordinatorLayout>
|