jimu-decompiled/resources/res/layout/adapter_gallery_item.xml
2025-05-13 19:24:51 +02:00

37 lines
1.4 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:descendantFocusability="blocksDescendants"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/adapter_gallery_item_img_snapshoot"
android:layout_width="match_parent"
android:layout_height="100dp"
android:scaleType="centerCrop"/>
<LinearLayout
android:gravity="center"
android:layout_gravity="bottom"
android:orientation="horizontal"
android:id="@+id/llVideo"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="8dp"
android:src="@mipmap/video_record"/>
<TextView
android:id="@+id/tvDuration"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="00:00"/>
</LinearLayout>
<CheckBox
android:layout_gravity="end|top"
android:id="@+id/adapter_gallery_item_cb_selected"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
style="@style/img_select_check"/>
</FrameLayout>