navigation_view_radio.xml 939 B

1234567891011121314151617181920212223
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. android:layout_width="match_parent"
  5. android:layout_height="?attr/listPreferredItemHeightSmall"
  6. android:paddingLeft="?attr/listPreferredItemPaddingLeft"
  7. android:paddingRight="?attr/listPreferredItemPaddingRight"
  8. android:background="?attr/selectableItemBackground"
  9. android:focusable="true">
  10. <RadioButton
  11. android:id="@+id/nav_view_item"
  12. android:layout_width="0dp"
  13. android:layout_height="match_parent"
  14. android:layout_weight="1"
  15. android:paddingLeft="@dimen/material_component_lists_icon_left_padding"
  16. android:background="@android:color/transparent"
  17. android:gravity="center_vertical|start"
  18. android:maxLines="1"
  19. android:clickable="false"
  20. android:textAppearance="@style/TextAppearance.AppCompat.Body2" />
  21. </LinearLayout>