You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
2.0 KiB
54 lines
2.0 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.constraintlayout.widget.ConstraintLayout 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:paddingLeft="4dp"
|
|
android:paddingTop="8dp"
|
|
android:paddingBottom="6dp"
|
|
android:paddingRight="4dp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<ImageView
|
|
android:id="@+id/image_view"
|
|
android:layout_width="0dp"
|
|
android:layout_height="272dp"
|
|
android:contentDescription="@string/loading"
|
|
android:visibility="visible"
|
|
android:scaleType="centerCrop"
|
|
android:background="@drawable/bg_img_border"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
app:layout_constraintRight_toRightOf="parent"
|
|
tools:ignore="RtlHardcoded,RtlSymmetry" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_title"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:maxLines="2"
|
|
android:ellipsize="end"
|
|
android:text="@string/app_name"
|
|
android:textColor="@color/tv_text_default"
|
|
android:textSize="13sp"
|
|
android:paddingTop="10dp"
|
|
app:layout_constraintTop_toBottomOf="@+id/image_view"
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
app:layout_constraintRight_toRightOf="parent" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_pub_date"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:text="@string/app_name"
|
|
android:textSize="11sp"
|
|
android:maxLines="1"
|
|
android:paddingTop="8dp"
|
|
android:paddingBottom="2dp"
|
|
app:layout_constraintTop_toBottomOf="@+id/tv_title"
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
app:layout_constraintRight_toRightOf="parent"
|
|
tools:ignore="SmallSp" />
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |