RetroMusicPlayer/app/src/main/res/layout-land/fragment_banner_home.xml

72 lines
2.7 KiB
XML
Raw Normal View History

2018-08-05 22:05:09 +05:30
<?xml version="1.0" encoding="utf-8"?>
2018-11-20 20:57:59 +05:30
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2018-08-08 13:33:38 +05:30
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
2018-08-05 22:05:09 +05:30
android:layout_width="match_parent"
2018-11-20 20:57:59 +05:30
android:id="@+id/main_fragment_content"
android:layout_height="match_parent"
android:orientation="vertical">
2018-08-05 22:05:09 +05:30
2018-11-20 20:57:59 +05:30
<FrameLayout
2018-08-08 13:33:38 +05:30
android:layout_width="match_parent"
2018-11-20 20:57:59 +05:30
android:layout_height="wrap_content">
2018-08-08 13:33:38 +05:30
2018-11-20 20:57:59 +05:30
<include layout="@layout/status_bar" />
</FrameLayout>
2018-11-05 19:23:07 +05:30
2018-11-20 20:57:59 +05:30
<androidx.coordinatorlayout.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
2018-11-05 19:23:07 +05:30
2018-11-20 20:57:59 +05:30
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
2018-11-05 19:23:07 +05:30
<com.google.android.material.card.MaterialCardView
android:id="@+id/image_container"
android:layout_width="match_parent"
2018-11-20 20:57:59 +05:30
android:layout_height="match_parent"
2018-11-05 19:23:07 +05:30
android:layout_margin="4dp"
2018-11-20 20:57:59 +05:30
android:layout_weight="1"
2018-11-05 19:23:07 +05:30
app:cardCornerRadius="8dp"
app:cardUseCompatPadding="true">
<ImageView
android:id="@+id/image"
android:layout_width="match_parent"
2018-11-20 20:57:59 +05:30
android:layout_height="match_parent"
2018-11-05 19:23:07 +05:30
android:scaleType="centerCrop"
app:layout_collapseMode="parallax"
tools:ignore="ContentDescription" />
</com.google.android.material.card.MaterialCardView>
2018-11-20 20:57:59 +05:30
<androidx.core.widget.NestedScrollView
android:id="@+id/container"
2018-08-08 13:33:38 +05:30
android:layout_width="match_parent"
android:layout_height="wrap_content"
2018-11-20 20:57:59 +05:30
android:layout_weight="1"
android:elevation="@dimen/card_elevation"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
2018-08-22 23:24:07 +05:30
2018-11-05 19:23:07 +05:30
2018-11-20 20:57:59 +05:30
<LinearLayout
android:id="@+id/content_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:descendantFocusability="blocksDescendants"
android:focusable="true"
android:focusableInTouchMode="true"
android:orientation="vertical">
2018-08-22 23:24:07 +05:30
2018-11-05 19:23:07 +05:30
2018-11-20 20:57:59 +05:30
<include layout="@layout/abs_playlists" />
<include layout="@layout/home_section_content" />
</LinearLayout>
</androidx.core.widget.NestedScrollView>
</LinearLayout>
</androidx.coordinatorlayout.widget.CoordinatorLayout>
</LinearLayout>