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

34 lines
1.2 KiB
XML
Raw Normal View History

2018-11-05 19:23:07 +05:30
<?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 06:36:16 +05:30
android:id="@+id/songTitle"
2018-11-05 19:23:07 +05:30
style="@style/SubTitleTextAppearance"
android:text="@string/songs" />
<androidx.recyclerview.widget.RecyclerView
2018-11-30 06:36:16 +05:30
android:id="@+id/recyclerView"
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"
2018-11-05 19:23:07 +05:30
android:nestedScrollingEnabled="false" />
<code.name.monkey.appthemehelper.common.views.ATEPrimaryTextView
2018-11-30 06:36:16 +05:30
android:id="@+id/moreTitle"
2018-11-05 19:23:07 +05:30
style="@style/SubTitleTextAppearance"
android:text="@string/songs"
android:visibility="gone" />
<androidx.recyclerview.widget.RecyclerView
2018-11-30 06:36:16 +05:30
android:id="@+id/moreRecyclerView"
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"
2018-11-05 19:23:07 +05:30
android:nestedScrollingEnabled="false"
android:visibility="gone" />
2018-11-13 09:00:08 +05:30
<Space
android:layout_width="match_parent"
android:layout_height="72dp" />
2018-11-05 19:23:07 +05:30
</LinearLayout>