I have a problem with this, the "DrawerLayout", look
and this is my build.gradle (Module: application)
The problem indicates that the specified style does not exist:
Failed to find style 'navigationViewStyle' in current theme
You have to add the subject within Styles.xml
<style name="NavigationViewStyle">
<!-- menu item text size-->
<item name="android:textSize">20sp</item>
<!-- menu item height-->
<item name="android:listPreferredItemHeightSmall">40dp</item>
</style>
and call it, I guess it's used by your NavigationView
:
<android.support.design.widget.NavigationView
...
...
app:theme="@style/NavigationViewStyle"
...
...
</android.support.design.widget.NavigationView>