21 lines
682 B
XML
21 lines
682 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:focusable="true"
|
|
android:gravity="center"
|
|
android:paddingStart="5dp"
|
|
android:descendantFocusability="beforeDescendants">
|
|
<RelativeLayout
|
|
android:id="@+id/item_root"
|
|
android:layout_marginTop="13dp"
|
|
android:background="@drawable/app_item_bg"
|
|
android:layout_width="34dp"
|
|
android:layout_height="34dp">
|
|
<ImageView
|
|
android:id="@+id/item_bg"
|
|
android:layout_height="match_parent"
|
|
android:layout_width="match_parent"/>
|
|
</RelativeLayout>
|
|
</RelativeLayout>
|