34 lines
1.4 KiB
XML
34 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
<ImageView
|
|
android:id="@+id/img_add"
|
|
android:background="@drawable/diy_edit_add"
|
|
android:visibility="gone"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"/>
|
|
<androidx.cardview.widget.CardView
|
|
android:id="@+id/cd_view"
|
|
android:visibility="gone"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
app:cardCornerRadius="30px"
|
|
app:cardElevation="10px">
|
|
<ImageView
|
|
android:id="@+id/img_show"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:scaleType="centerCrop"/>
|
|
<ImageView
|
|
android:layout_gravity="right"
|
|
android:id="@+id/img_delete"
|
|
android:background="@drawable/diy_build_delete"
|
|
android:visibility="visible"
|
|
android:layout_width="@dimen/diy_build_item_delete"
|
|
android:layout_height="@dimen/diy_build_item_delete"
|
|
android:layout_marginTop="@dimen/diy_build_delete_left"
|
|
android:layout_marginRight="@dimen/diy_build_delete_left"/>
|
|
</androidx.cardview.widget.CardView>
|
|
</FrameLayout>
|