You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.0 KiB
XML
37 lines
1.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout
|
|
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">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/rootLayout"
|
|
android:layout_width="92dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
android:orientation="vertical"
|
|
android:paddingBottom="4dp"
|
|
tools:ignore="UselessParent">
|
|
|
|
<ImageView
|
|
android:id="@+id/imageView_cover"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="128dp"
|
|
android:scaleType="centerCrop"
|
|
tools:ignore="ContentDescription" />
|
|
|
|
<TextView
|
|
android:id="@+id/textView_title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:ellipsize="end"
|
|
android:gravity="center"
|
|
android:lines="2"
|
|
android:shadowColor="@android:color/black"
|
|
android:shadowRadius="1"
|
|
android:textColor="@android:color/white" />
|
|
|
|
</LinearLayout>
|
|
|
|
</FrameLayout> |