Last active
August 7, 2018 12:51
-
-
Save joseadrian/f224fe9a2e43572a84a3 to your computer and use it in GitHub Desktop.
Remove glow / edges on Navigation View
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
xmlns:app="http://schemas.android.com/apk/res-auto" | |
xmlns:tools="http://schemas.android.com/tools" | |
android:id="@+id/drawer_layout" | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" | |
android:fitsSystemWindows="true" | |
tools:openDrawer="start"> | |
<include | |
layout="@layout/app_bar_main" | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" /> | |
<android.support.design.widget.NavigationView | |
android:id="@+id/nav_view" | |
android:layout_width="wrap_content" | |
android:layout_height="match_parent" | |
android:layout_gravity="start" | |
android:fitsSystemWindows="true" | |
android:orientation="vertical" | |
android:theme="@style/Widget.MyTheme.ScrollView"> | |
<!-- ... --> | |
</android.support.design.widget.NavigationView> | |
</android.support.v4.widget.DrawerLayout> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<resources> | |
<!-- @TODO Check how themes work --> | |
<style name="Theme.MyTheme" parent="ThemeOverlay.AppCompat.Light"> | |
<item name="android:listViewStyle">@style/Widget.MyTheme.ListView</item> | |
<item name="android:scrollViewStyle">@style/Widget.MyTheme.ScrollView</item> | |
</style> | |
<style name="Widget.MyTheme.ListView" parent="android:Widget.ListView"> | |
<item name="android:overScrollMode">never</item> | |
</style> | |
<style name="Widget.MyTheme.ScrollView" parent="android:Widget.ScrollView"> | |
<item name="android:overScrollMode">never</item> | |
</style> | |
</resources> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment