39 lines
1.2 KiB
XML
39 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
id="@+id/remove_tile_relative_layout"
|
|
visibility="gone"
|
|
layout_width="match_parent"
|
|
layout_height="104dp"
|
|
layout_alignParentBottom="true"
|
|
elevation="100dp">
|
|
<ImageView
|
|
layout_width="match_parent"
|
|
layout_height="wrap_content"
|
|
src="@drawable/ic_shadow_delete"
|
|
scaleType="centerCrop"
|
|
layout_alignParentBottom="true"
|
|
contentDescription="@null"/>
|
|
<LinearLayout
|
|
gravity="center"
|
|
orientation="horizontal"
|
|
layout_width="match_parent"
|
|
layout_height="60dp"
|
|
layout_alignParentBottom="true">
|
|
<ImageView
|
|
id="@+id/trash_image_view"
|
|
layout_width="24dp"
|
|
layout_height="24dp"
|
|
src="@drawable/ic_trash"
|
|
tint="#ffffff"
|
|
contentDescription="@null"/>
|
|
<TextView
|
|
textColor="#ffffff"
|
|
id="@+id/remove_tile_text_view"
|
|
padding="8dp"
|
|
layout_width="wrap_content"
|
|
layout_height="wrap_content"
|
|
text="@string/remove_item"
|
|
style="@style/2132017700"/>
|
|
</LinearLayout>
|
|
</RelativeLayout>
|