2016-11-10 12:44:18 +01:00
|
|
|
<?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"
|
2016-11-10 19:54:33 +01:00
|
|
|
tools:context="org.fdroid.fdroid.AppDetails2"
|
2017-04-08 15:38:52 +05:30
|
|
|
android:background="?attr/appDetailsBackground"
|
2016-11-16 14:05:23 +01:00
|
|
|
android:id="@+id/rootCoordinator"
|
2016-11-10 19:54:33 +01:00
|
|
|
>
|
2016-11-10 12:44:18 +01:00
|
|
|
|
|
|
|
<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">
|
|
|
|
|
2016-12-05 22:32:51 +11:00
|
|
|
<org.fdroid.fdroid.views.apps.FeatureImage
|
2016-11-18 15:55:44 +01:00
|
|
|
android:id="@+id/feature_graphic"
|
2016-11-10 12:44:18 +01:00
|
|
|
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>
|
|
|
|
|
2016-11-16 11:05:20 +01:00
|
|
|
<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>
|
2016-11-10 12:44:18 +01:00
|
|
|
|
|
|
|
</android.support.design.widget.CoordinatorLayout>
|