58 lines
2.2 KiB
XML
58 lines
2.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.appcompat.widget.LinearLayoutCompat xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:card_view="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<androidx.cardview.widget.CardView
|
|
android:id="@+id/card_preview_card"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="10dp"
|
|
android:layout_marginTop="5dp"
|
|
android:layout_marginRight="10dp"
|
|
|
|
android:paddingLeft="15dp"
|
|
android:paddingTop="5dp"
|
|
android:paddingRight="15dp"
|
|
android:paddingBottom="5dp"
|
|
card_view:cardCornerRadius="5dp"
|
|
card_view:cardElevation="10dp"
|
|
card_view:cardUseCompatPadding="true"
|
|
tools:layout_editor_absoluteX="8dp"
|
|
tools:layout_editor_absoluteY="3dp">
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:minHeight="100dp">
|
|
|
|
<TextView
|
|
android:id="@+id/card_preview_name"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="20dp"
|
|
android:layout_marginTop="10dp"
|
|
android:text="TextView"
|
|
android:textSize="25dp"
|
|
tools:layout_editor_absoluteX="8dp"
|
|
tools:layout_editor_absoluteY="3dp" />
|
|
|
|
<ImageView
|
|
android:id="@+id/card_preview_settings_button"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentTop="true"
|
|
android:layout_alignParentEnd="true"
|
|
android:layout_alignParentRight="true"
|
|
android:alpha="1"
|
|
android:clickable="true"
|
|
android:src="@drawable/ic_settings_gray" />
|
|
|
|
</RelativeLayout>
|
|
|
|
</androidx.cardview.widget.CardView>
|
|
|
|
</androidx.appcompat.widget.LinearLayoutCompat> |