응용 프로그램을 만들고 있는데 응용 프로그램에 탐색 창과 하단 막대가 있습니다.동일한 응용 프로그램에서 탐색 창과 하단 막대를 만드는 방법
좋은 방향으로 가고 있다고 생각하지만, 표시 할 때 탐색 용 서랍을 수행 할 수 있습니다.이 것은 하단 바 위에 있지 않으므로 뒤에 있습니다. 어떻게 할 수 있습니까? 아래쪽 막대의 내비게이션 창을 필요합니다.
이
내 코드, 난<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<include
layout="@layout/include_list_viewpager" />-
<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_height="match_parent"
android:layout_width="300dp"
android:layout_gravity="start"
android:fitsSystemWindows="true"
app:headerLayout="@layout/nav_header"
app:menu="@menu/drawer_view" />
</android.support.v4.widget.DrawerLayout>
<android.support.design.widget.BottomNavigationView
android:id="@+id/bottom_navigation"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
app:itemBackground="@color/colorPrimaryRed"
app:itemTextColor="@drawable/nav_item_color_state"
app:itemIconTint="@drawable/nav_item_color_state"
app:menu="@menu/navigation" />
</RelativeLayout>
이 시도 ter216 @ 나던, 다른 아무것도 알려 경우 –
Hooo 덕분에 너는 너무, 완벽하게 작동한다 = D – ter2016
좋아, 너는 내 대답을 받아 들일 수있어. 어. –