Private
Public Access
1
0
Files
MagnatuneCompanion/app/src/main/res/layout/fragment_artist.xml

26 lines
1.1 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:textStyle="bold"
android:textSize="20sp"
android:transitionName="artist_name"
android:id="@+id/artist_name"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:id="@+id/artist_description"/>
<co.moonmonkeylabs.realmrecyclerview.RealmRecyclerView
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/artist_albums"
app:rrvLayoutType="Grid"
app:rrvIsRefreshable="false"
app:rrvGridLayoutItemWidth="180dp"/>
</LinearLayout>