25 lines
882 B
XML
25 lines
882 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/menu_item_background"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:padding="5dp"
|
|
android:paddingStart="16dp"
|
|
android:paddingEnd="16dp"
|
|
android:clickable="true"
|
|
android:focusable="true" >
|
|
|
|
<androidx.appcompat.widget.AppCompatButton
|
|
android:id="@+id/button"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/button_themed"
|
|
android:paddingTop="20dp"
|
|
android:paddingBottom="20dp"
|
|
android:textAllCaps="false"
|
|
android:textSize="20sp"
|
|
tools:text="Menu Item" />
|
|
|
|
</LinearLayout> |