103 lines
4.1 KiB
XML
103 lines
4.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?><!--
|
|
~ Aurora Store
|
|
~ Copyright (C) 2021, Rahul Kumar Patel <whyorean@gmail.com>
|
|
~
|
|
~ Aurora Store is free software: you can redistribute it and/or modify
|
|
~ it under the terms of the GNU General Public License as published by
|
|
~ the Free Software Foundation, either version 2 of the License, or
|
|
~ (at your option) any later version.
|
|
~
|
|
~ Aurora Store is distributed in the hope that it will be useful,
|
|
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
~ GNU General Public License for more details.
|
|
~
|
|
~ You should have received a copy of the GNU General Public License
|
|
~ along with Aurora Store. If not, see <http://www.gnu.org/licenses/>.
|
|
~
|
|
-->
|
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<include
|
|
android:id="@+id/layout_details_toolbar"
|
|
layout="@layout/view_toolbar_native" />
|
|
|
|
<androidx.core.widget.NestedScrollView
|
|
android:id="@+id/scrollView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:clipToPadding="false"
|
|
android:fillViewport="true"
|
|
android:paddingBottom="@dimen/height_peek">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<include
|
|
android:id="@+id/layout_details_app"
|
|
layout="@layout/layout_details_app" />
|
|
|
|
<ViewFlipper
|
|
android:id="@+id/view_flipper"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:minHeight="320dp">
|
|
|
|
<ProgressBar
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerInParent="true" />
|
|
</RelativeLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:divider="@drawable/divider"
|
|
android:orientation="vertical"
|
|
android:showDividers="middle">
|
|
|
|
<include
|
|
android:id="@+id/layout_detail_description"
|
|
layout="@layout/layout_details_description" />
|
|
|
|
<include
|
|
android:id="@+id/layout_details_review"
|
|
layout="@layout/layout_details_review" />
|
|
|
|
<include
|
|
android:id="@+id/layout_details_privacy"
|
|
layout="@layout/layout_details_privacy" />
|
|
|
|
<include
|
|
android:id="@+id/layout_details_beta"
|
|
layout="@layout/layout_details_beta" />
|
|
|
|
<include
|
|
android:id="@+id/layout_details_dev"
|
|
layout="@layout/layout_details_dev" />
|
|
</LinearLayout>
|
|
</ViewFlipper>
|
|
</LinearLayout>
|
|
</androidx.core.widget.NestedScrollView>
|
|
</LinearLayout>
|
|
|
|
<include
|
|
android:id="@+id/layout_details_install"
|
|
layout="@layout/layout_details_install" />
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout> |