2018-11-05 13:53:07 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<code.name.monkey.appthemehelper.common.views.ATEPrimaryTextView
|
2018-11-30 01:06:16 +00:00
|
|
|
android:id="@+id/songTitle"
|
2018-11-05 13:53:07 +00:00
|
|
|
style="@style/SubTitleTextAppearance"
|
|
|
|
android:text="@string/songs" />
|
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
2018-11-30 01:06:16 +00:00
|
|
|
android:id="@+id/recyclerView"
|
2018-11-05 13:53:07 +00:00
|
|
|
android:layout_width="match_parent"
|
2018-11-13 03:30:08 +00:00
|
|
|
android:layout_height="wrap_content"
|
2018-11-05 13:53:07 +00:00
|
|
|
android:nestedScrollingEnabled="false" />
|
|
|
|
|
|
|
|
<code.name.monkey.appthemehelper.common.views.ATEPrimaryTextView
|
2018-11-30 01:06:16 +00:00
|
|
|
android:id="@+id/moreTitle"
|
2018-11-05 13:53:07 +00:00
|
|
|
style="@style/SubTitleTextAppearance"
|
|
|
|
android:text="@string/songs"
|
|
|
|
android:visibility="gone" />
|
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
2018-11-30 01:06:16 +00:00
|
|
|
android:id="@+id/moreRecyclerView"
|
2018-11-05 13:53:07 +00:00
|
|
|
android:layout_width="match_parent"
|
2018-11-13 03:30:08 +00:00
|
|
|
android:layout_height="wrap_content"
|
2018-11-05 13:53:07 +00:00
|
|
|
android:nestedScrollingEnabled="false"
|
|
|
|
android:visibility="gone" />
|
2018-11-13 03:30:08 +00:00
|
|
|
|
|
|
|
<Space
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="72dp" />
|
2018-11-05 13:53:07 +00:00
|
|
|
</LinearLayout>
|