민프

[Android][Kotlin] 안드로이드 사이드 메뉴바를 구현해보자 (DrawerLayout) 본문

[Android]

[Android][Kotlin] 안드로이드 사이드 메뉴바를 구현해보자 (DrawerLayout)

민프야 2021. 9. 7. 13:15

DrawerLayout을 이용해서 사이드 메뉴바를 구현해보자!!

XML에서 최상단 Layout을 DrawerLayout으로 변경한 다음
메뉴로 이용될 레이아웃을 NavigationView으로 해주면
XML에서의 작업은 끝난 것 이고, 

코틀린 코드로 
메뉴 버튼을 눌렀을 때

NavigationView가 나오게 해주면 된다.

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:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#FFFFFF"
    android:id="@+id/mypage_drawer"
    tools:context=".mypageActivity">

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">
        <RelativeLayout
            android:id="@+id/mypage_menu_btn"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true">

            <ImageView
                android:layout_width="30dp"
                android:layout_height="30dp"
                android:layout_margin="10dp"
                android:src="@drawable/menu" />
        </RelativeLayout>
    </RelativeLayout>

    <com.google.android.material.navigation.NavigationView
        android:id="@+id/navigation"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_gravity="end">
        <LinearLayout
            android:orientation="vertical"
            android:layout_width="match_parent"
            android:layout_height="match_parent">
            <Button
                android:id="@+id/menu01"
                android:layout_width="match_parent"
                android:layout_height="50dp"
                android:text="MENU 01"/>
            <Button
                android:id="@+id/menu02"
                android:layout_width="match_parent"
                android:layout_height="50dp"
                android:text="MENU 02"/>
            <Button
                android:id="@+id/menu03"
                android:layout_width="match_parent"
                android:layout_height="50dp"
                android:text="MENU 03"/>
            <Button
                android:id="@+id/menu04"
                android:layout_width="match_parent"
                android:layout_height="50dp"
                android:text="MENU 04"/>
        </LinearLayout>
    </com.google.android.material.navigation.NavigationView>
</androidx.drawerlayout.widget.DrawerLayout>

 

        val mypage_menu_btn = findViewById<RelativeLayout>(R.id.mypage_menu_btn)
        val mypage_drawer = findViewById<DrawerLayout>(R.id.mypage_drawer)


        mypage_menu_btn.setOnClickListener {
            mypage_drawer.openDrawer(GravityCompat.END)
        }

실행화면

Comments