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

62 lines
2.5 KiB
XML
Raw Normal View History

2018-08-05 22:05:09 +05:30
<?xml version="1.0" encoding="utf-8"?>
2018-11-13 09:00:08 +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"
2018-11-13 09:00:08 +05:30
android:layout_height="match_parent"
android:orientation="vertical">
2018-08-05 22:05:09 +05:30
2018-11-13 09:00:08 +05:30
<FrameLayout
2018-08-05 22:05:09 +05:30
android:layout_width="match_parent"
2018-11-13 09:00:08 +05:30
android:layout_height="wrap_content">
2018-08-08 13:33:38 +05:30
2018-11-13 09:00:08 +05:30
<include layout="@layout/status_bar" />
</FrameLayout>
2018-11-05 19:23:07 +05:30
2018-11-13 09:00:08 +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-13 09:00:08 +05:30
<androidx.core.widget.NestedScrollView
android:id="@+id/container"
2018-11-05 19:23:07 +05:30
android:layout_width="match_parent"
android:layout_height="match_parent"
2018-11-13 09:00:08 +05:30
android:background="@drawable/bg_circular_top_corners"
app:behavior_overlapTop="24dp"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
2018-11-05 19:23:07 +05:30
2018-11-13 09:00:08 +05:30
<LinearLayout
android:id="@+id/content_container"
2018-11-05 19:23:07 +05:30
android:layout_width="match_parent"
2018-11-13 09:00:08 +05:30
android:layout_height="match_parent"
android:descendantFocusability="blocksDescendants"
android:focusable="true"
android:focusableInTouchMode="true"
android:orientation="vertical">
2018-11-05 19:23:07 +05:30
2018-11-20 20:57:59 +05:30
2018-11-13 09:00:08 +05:30
<com.google.android.material.card.MaterialCardView
android:id="@+id/image_container"
2018-11-05 19:23:07 +05:30
android:layout_width="match_parent"
2018-11-13 09:00:08 +05:30
android:layout_height="wrap_content"
android:layout_margin="4dp"
app:cardCornerRadius="8dp"
app:cardUseCompatPadding="true">
<ImageView
android:id="@+id/image"
android:layout_width="match_parent"
android:layout_height="196dp"
android:scaleType="centerCrop"
app:layout_collapseMode="parallax"
tools:ignore="ContentDescription" />
</com.google.android.material.card.MaterialCardView>
<include layout="@layout/abs_playlists" />
<include layout="@layout/home_section_content" />
</LinearLayout>
</androidx.core.widget.NestedScrollView>
</androidx.coordinatorlayout.widget.CoordinatorLayout>
</LinearLayout>