funkwhale-app-android/app/src/main/res/layout/row_album_grid.xml

29 lines
921 B
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/ripple"
android:orientation="vertical"
android:padding="8dp"
android:transitionGroup="true"
tools:showIn="@layout/fragment_albums_grid">
<audio.funkwhale.ffa.views.SquareImageView
android:id="@+id/cover"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="8dp"
tools:src="@tools:sample/avatars" />
<TextView
android:id="@+id/title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ellipsize="end"
android:lines="1"
android:textAlignment="center"
tools:text="Black holes and revelations" />
</LinearLayout>