2016-12-11 06:43:44 -05:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-02-21 18:43:50 -05:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2016-12-11 06:43:44 -05:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="?attr/listPreferredItemHeightSmall"
|
2021-10-03 12:32:04 -04:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2021-06-19 15:45:16 -04:00
|
|
|
android:background="?attr/selectableItemBackground"
|
2020-02-21 18:43:50 -05:00
|
|
|
android:focusable="true"
|
|
|
|
android:paddingStart="?attr/listPreferredItemPaddingStart"
|
|
|
|
android:paddingEnd="?attr/listPreferredItemPaddingEnd">
|
2016-12-11 06:43:44 -05:00
|
|
|
|
|
|
|
<CheckedTextView
|
|
|
|
android:id="@+id/nav_view_item"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_weight="1"
|
2021-05-22 10:10:41 -04:00
|
|
|
android:drawablePadding="16dp"
|
2016-12-11 06:43:44 -05:00
|
|
|
android:gravity="center_vertical|start"
|
|
|
|
android:maxLines="1"
|
2021-10-03 12:32:04 -04:00
|
|
|
android:textAppearance="?attr/textAppearanceBody2"
|
|
|
|
tools:text="Title" />
|
2016-12-11 06:43:44 -05:00
|
|
|
|
|
|
|
</LinearLayout>
|