RetroMusicPlayer/app/src/main/res/layout-xlarge-land/fragment_home.xml

49 lines
1.7 KiB
XML
Raw Normal View History

2018-07-27 18:37:33 +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-07-27 18:37:33 +05:30
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
2018-11-20 20:57:59 +05:30
android:id="@+id/main_fragment_content"
2018-07-27 18:37:33 +05:30
android:layout_width="match_parent"
2018-11-20 20:57:59 +05:30
android:layout_height="match_parent"
android:orientation="vertical">
2018-07-27 18:37:33 +05:30
2018-11-20 20:57:59 +05:30
<FrameLayout
2018-07-27 18:37:33 +05:30
android:layout_width="match_parent"
android:layout_height="wrap_content"
tools:ignore="UnusedAttribute">
2018-11-20 20:57:59 +05:30
<include layout="@layout/status_bar" />
</FrameLayout>
<androidx.coordinatorlayout.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<androidx.core.widget.NestedScrollView
android:id="@+id/container"
2018-07-27 18:37:33 +05:30
android:layout_width="match_parent"
android:layout_height="wrap_content"
2018-11-20 20:57:59 +05:30
android:layout_marginStart="128dp"
android:layout_marginEnd="128dp"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
2018-07-27 18:37:33 +05:30
2018-09-10 01:14:46 +05:30
<LinearLayout
2018-11-20 20:57:59 +05:30
android:id="@+id/content_container"
2018-09-10 01:14:46 +05:30
android:layout_width="match_parent"
android:layout_height="wrap_content"
2018-11-20 20:57:59 +05:30
android:descendantFocusability="blocksDescendants"
android:focusable="true"
android:focusableInTouchMode="true"
2018-11-13 09:00:08 +05:30
android:orientation="vertical">
2018-07-27 18:37:33 +05:30
2018-11-20 20:57:59 +05:30
<include layout="@layout/abs_playlists" />
2018-07-27 18:37:33 +05:30
2018-11-20 20:57:59 +05:30
<include layout="@layout/home_section_content" />
2018-07-27 18:37:33 +05:30
2018-09-10 01:14:46 +05:30
</LinearLayout>
2018-11-20 20:57:59 +05:30
</androidx.core.widget.NestedScrollView>
2018-11-13 09:00:08 +05:30
2018-11-20 20:57:59 +05:30
</androidx.coordinatorlayout.widget.CoordinatorLayout>
</LinearLayout>