Пользовательский вид навигации в android - PullRequest
0 голосов
/ 17 июня 2020

Я пытаюсь создать настраиваемое представление навигации, поэтому добавил фрагмент вместо представления naviagtion внутри ящика. Я добавил представление требований ниже. Я использовал макет фрагмента, но не смог получить это представление. пожалуйста, помогите с этим

Заранее спасибо

enter image description here

Xml Код:

<?xml version="1.0" encoding="utf-8"?>
<androidx.drawerlayout.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" />

<LinearLayout
    android:layout_width="64dp"
    android:layout_height="match_parent"
    android:layout_gravity="start"
    android:background="@android:color/background_light"
    android:fitsSystemWindows="true" >
    <fragment
        android:id="@+id/fragment_drawer"
        android:name="com.example.myapplicationnavogation.ui.gallery.GalleryFragment"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"/>

</LinearLayout>

Fagment xml:

  <?xml version="1.0" encoding="utf-8"?>
   <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
       android:layout_width="match_parent"
       android:layout_height="wrap_content"
       android:orientation="vertical">
<LinearLayout
    android:id="@+id/linaer"
    android:layout_width="300dp"
    android:layout_height="wrap_content"
    android:background="@drawable/back">
    <ListView
        android:layout_width="match_parent"
        android:layout_height="200dp">

    </ListView>
</LinearLayout>

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/linaer">
<ImageButton
    android:id="@+id/img_back"
    android:layout_width="24dp"
    android:layout_height="24dp"
    android:layout_centerHorizontal="true"
    android:layout_margin="10dp"
    android:background="@android:color/transparent"
    android:contentDescription="@string/app_name"
    android:src="@drawable/ic_baseline_arrow_forward_24" />
  </RelativeLayout>
  </RelativeLayout>

Мой вид:

enter image description here

...