2016-12-11 12:43:44 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-02-22 00:43:50 +01:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2016-12-11 12:43:44 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="?attr/listPreferredItemHeightSmall"
|
2021-06-19 21:45:16 +02:00
|
|
|
android:background="?attr/selectableItemBackground"
|
2020-02-22 00:43:50 +01:00
|
|
|
android:focusable="true"
|
|
|
|
android:paddingStart="?attr/listPreferredItemPaddingStart"
|
|
|
|
android:paddingEnd="?attr/listPreferredItemPaddingEnd">
|
2016-12-11 12:43:44 +01:00
|
|
|
|
|
|
|
<RadioButton
|
|
|
|
android:id="@+id/nav_view_item"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:background="@android:color/transparent"
|
2020-02-22 00:43:50 +01:00
|
|
|
android:clickable="false"
|
2016-12-11 12:43:44 +01:00
|
|
|
android:gravity="center_vertical|start"
|
|
|
|
android:maxLines="1"
|
2021-05-22 16:10:41 +02:00
|
|
|
android:paddingHorizontal="16dp"
|
2021-11-14 16:23:44 +01:00
|
|
|
android:textAppearance="?attr/textAppearanceBodyMedium" />
|
2016-12-11 12:43:44 +01:00
|
|
|
|
|
|
|
</LinearLayout>
|