PlayerAndroid/app/src/main/res/layout/activity_album_content.xml

34 lines
1.2 KiB
XML
Raw Normal View History

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
android:id="@+id/song_title"
style="@style/SubTitleTextAppearance"
android:text="@string/songs" />
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recycler_view"
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
android:id="@+id/more_title"
style="@style/SubTitleTextAppearance"
android:text="@string/songs"
android:visibility="gone" />
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/more_recycler_view"
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>