33 lines
No EOL
1,011 B
XML
33 lines
No EOL
1,011 B
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="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:padding="6dp">
|
|
|
|
<ImageView
|
|
android:id="@+id/outlineRect"
|
|
android:layout_width="164dp"
|
|
android:layout_height="128dp"
|
|
app:srcCompat="@drawable/bg_select_icon_button_outline" />
|
|
|
|
<ImageView
|
|
android:id="@+id/backgroundRect"
|
|
android:layout_width="156dp"
|
|
android:layout_height="120dp"
|
|
android:layout_margin="4dp"
|
|
android:background="@drawable/bg_select_icon_button" />
|
|
|
|
<ImageView
|
|
android:id="@+id/headingIcon"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal|center_vertical" />
|
|
|
|
<ImageView
|
|
android:id="@+id/icon"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal|center_vertical" />
|
|
|
|
</FrameLayout> |