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

84 lines
3.2 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">
2018-11-23 22:00:46 +05:30
<com.google.android.material.appbar.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@android:color/transparent"
android:elevation="0dp"
app:elevation="0dp">
2018-11-28 11:52:40 +05:30
<FrameLayout
2018-11-23 22:00:46 +05:30
android:layout_width="match_parent"
android:layout_height="wrap_content"
2018-11-28 11:52:40 +05:30
tools:ignore="UnusedAttribute">
2018-12-04 21:04:26 +05:30
<androidx.appcompat.widget.AppCompatImageView
2018-11-28 11:52:40 +05:30
android:id="@+id/searchIcon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2018-12-04 21:04:26 +05:30
android:padding="16dp"
app:srcCompat="@drawable/ic_search_white_24dp"
app:tint="@color/md_white_1000" />
2018-11-28 11:52:40 +05:30
2018-12-04 21:04:26 +05:30
<TextView
android:id="@+id/bannerTitle"
2018-11-28 11:52:40 +05:30
style="@style/BigTitleTextAppearanceToolbar"
2018-12-04 21:04:26 +05:30
android:text="@string/app_name"
android:textColor="@color/md_white_1000" />
2018-11-28 11:52:40 +05:30
<code.name.monkey.retromusic.views.CircularImageView
2018-12-04 21:04:26 +05:30
android:id="@+id/userImage"
android:layout_width="32dp"
android:layout_height="32dp"
2018-11-28 11:52:40 +05:30
android:layout_gravity="end|center_vertical"
2018-12-04 21:04:26 +05:30
android:layout_marginEnd="16dp"
2018-11-28 11:52:40 +05:30
app:civ_border="false" />
</FrameLayout>
2018-11-23 22:00:46 +05:30
</com.google.android.material.appbar.AppBarLayout>
2018-11-20 20:57:59 +05:30
<androidx.core.widget.NestedScrollView
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-12-04 21:04:26 +05:30
android:id="@+id/contentContainer"
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>