2016-12-11 06:43:44 -05:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="?attr/listPreferredItemHeightSmall"
|
|
|
|
android:paddingLeft="?attr/listPreferredItemPaddingLeft"
|
|
|
|
android:paddingRight="?attr/listPreferredItemPaddingRight"
|
2016-12-18 14:29:46 -05:00
|
|
|
android:background="?attr/selectableItemBackground"
|
2016-12-11 06:43:44 -05:00
|
|
|
android:focusable="true">
|
|
|
|
|
|
|
|
<RadioButton
|
|
|
|
android:id="@+id/nav_view_item"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:paddingLeft="@dimen/material_component_lists_icon_left_padding"
|
|
|
|
android:background="@android:color/transparent"
|
|
|
|
android:gravity="center_vertical|start"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:clickable="false"
|
|
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Body2" />
|
|
|
|
|
|
|
|
</LinearLayout>
|