39 lines
1.5 KiB
XML
39 lines
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/ry_picture"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
style="@style/scrollbar_recyclerView_none"/>
|
|
<ImageView
|
|
android:id="@+id/img_back"
|
|
android:background="@drawable/ic_back"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"/>
|
|
<TextView
|
|
android:textSize="@dimen/picture_text_size"
|
|
android:textColor="@color/bg_white"
|
|
android:ellipsize="end"
|
|
android:gravity="center_vertical"
|
|
android:layout_gravity="bottom"
|
|
android:id="@+id/tv_pic_desc"
|
|
android:background="@drawable/shape_gradient_1d2c42"
|
|
android:paddingLeft="@dimen/picture_left"
|
|
android:paddingRight="@dimen/picture_left"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/picture_text_height"
|
|
android:maxLines="2"/>
|
|
<TextView
|
|
android:textSize="@dimen/txt_size_20"
|
|
android:textColor="@color/bg_white"
|
|
android:layout_gravity="bottom|right"
|
|
android:id="@+id/tv_index"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="@dimen/dp_10"
|
|
android:text="@string/picture_text_index"/>
|
|
</FrameLayout>
|