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

29 lines
921 B
XML
Raw Normal View History

2019-08-19 16:50:33 +02:00
<?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"
2019-08-19 16:50:33 +02:00
android:orientation="vertical"
android:padding="8dp"
android:transitionGroup="true"
tools:showIn="@layout/fragment_albums_grid">
<audio.funkwhale.ffa.views.SquareImageView
2019-08-19 16:50:33 +02:00
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" />
2021-07-02 13:55:49 +02:00
</LinearLayout>