I'd like to apply the android.support.design.widget.NavigationView
divider to another view I have. I want it to be the same divider. The divider in the NavigationView for those who dont know gets created when you specify a group. You can see an example of the divider here. I want to have a view that does something like this else where:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent"
android:divider="the same divider as navigationView"
android:showDividers="beginning"/>
the gradle dependency for the material design package is (if it matters):
compile 'com.android.support:design:22.2.1'
so I'm just trying to reuse the same divider icon that the design library is using somewhere else.