60 lines
2.4 KiB
XML
60 lines
2.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:background="@android:color/black"
|
|
android:descendantFocusability="blocksDescendants"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/dp200w">
|
|
<ImageView
|
|
android:id="@+id/adapter_gallery_item_img_snapshoot"
|
|
android:background="@color/colorItem"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/dp200w"
|
|
android:src="@mipmap/camera"
|
|
android:scaleType="centerInside"/>
|
|
<TextView
|
|
android:textSize="@dimen/dp15"
|
|
android:textColor="@android:color/white"
|
|
android:layout_gravity="center"
|
|
android:id="@+id/tvCapture"
|
|
android:visibility="gone"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"/>
|
|
<ImageView
|
|
android:id="@+id/imgMask"
|
|
android:background="@color/bg_cannot_choose"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"/>
|
|
<RelativeLayout
|
|
android:gravity="center"
|
|
android:layout_gravity="bottom"
|
|
android:orientation="horizontal"
|
|
android:id="@+id/llVideo"
|
|
android:background="@drawable/shap_mask"
|
|
android:paddingLeft="@dimen/dp5"
|
|
android:paddingRight="@dimen/dp6"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
<ImageView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:src="@mipmap/video_record"/>
|
|
<TextView
|
|
android:textColor="@android:color/white"
|
|
android:id="@+id/tvDuration"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="00:00"
|
|
android:layout_alignParentRight="true"/>
|
|
</RelativeLayout>
|
|
<CheckBox
|
|
android:layout_gravity="end|top"
|
|
android:id="@+id/adapter_gallery_item_cb_selected"
|
|
android:background="@drawable/selector_img_select_check"
|
|
android:layout_width="@dimen/dp50w"
|
|
android:layout_height="@dimen/dp50w"
|
|
android:layout_marginTop="@dimen/dp2"
|
|
android:layout_marginRight="@dimen/dp2"
|
|
android:button="@null"/>
|
|
</androidx.cardview.widget.CardView>
|