I have the below design to implement for the Android Navigation App Drawer of the app and I am confused how to go about it.
In my design, there is a black strip on the left side, which also has an image. My query is how do I create that space in the app drawer ?
I tried to add a Layout inside the app drawer but couldn't. It only allows 'Items' and 'Groups' to be added. What are my possible options ?
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">
    android:background="@color/colorBg"
    <group android:checkableBehavior="single">
        android:background="@color/colorBg"
        <item
            android:id="@+id/myasset"
            android:background="@color/colorBg"
            android:title="My Asset" />
        <item
            android:id="@+id/account"
            android:background="@color/colorBg"
            android:title="Account" />
        <item
            android:id="@+id/howitworks"
            android:background="@color/colorBg"
            android:title="How it works" />
        <item
            android:id="@+id/feedback"
            android:background="@color/colorBg"
            android:title="Feedback" />
        <item
            android:id="@+id/legal"
            android:background="@color/colorBg"
            android:title="Legal" />
        <item
            android:id="@+id/exit"
            android:background="@color/colorBg"
            android:title="Exit" />
    </group>
</menu>
 
     
    