39 lines
1.2 KiB
XML
39 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<com.google.android.material.card.MaterialCardView
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:cardBackgroundColor="?android:windowBackground"
|
|
app:cardElevation="0dp"
|
|
app:cardMaxElevation="0dp"
|
|
app:strokeColor="?android:colorControlNormal"
|
|
app:strokeWidth="1px">
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<org.koitharu.kotatsu.ui.common.widgets.CoverImageView
|
|
android:id="@+id/imageView_cover"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:scaleType="centerCrop" />
|
|
|
|
<TextView
|
|
android:id="@+id/textView_title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:ellipsize="end"
|
|
android:gravity="center_vertical|start"
|
|
android:lines="2"
|
|
android:padding="6dp"
|
|
android:text="?android:textColorPrimary"
|
|
tools:text="@tools:sample/lorem" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
</com.google.android.material.card.MaterialCardView> |