네비게이션 드로어(Navigation Drawer) 사용법
네비게이션 드로어(Navigation Drawer)는 많은 앱에서 사이드 메뉴를 표시하기 위해 사용되는 일반적인 UI 패턴입니다. 사용자가 앱의 주요 기능에 빠르게 액세스 할 수 있도록 서랍처럼 화면 옆에 숨겨진 메뉴를 열 수 있습니다.
1. 라이브러리 추가
네비게이션 드로어를 사용하기 위해 먼저 필요한 라이브러리를 추가해야 합니다.
dependencies {
implementation 'com.android.support:design:28.0.0'
}
2. 네비게이션 드로어 추가
네비게이션 드로어를 액티비티에 추가하기 위해 다음 단계를 따릅니다.
2.1 액티비티 레이아웃 수정
먼저 액티비티의 레이아웃 파일을 열고 네비게이션 드로어를 추가할 위치를 지정합니다.
드로어를 추가하기 위해 DrawerLayout
과 NavigationView
를 사용할 수 있습니다.
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout 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">
<!-- 메인 콘텐츠영역 -->
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/main_content"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
<!-- 드로어 -->
<android.support.v4.widget.DrawerLayout
android:id="@+id/drawer_layout"
android:layout_width="wrap_content"
android:layout_height="match_parent">
<!-- 드로어 메뉴 -->
<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
app:headerLayout="@layout/nav_header"
app:menu="@menu/navigation_menu" />
</android.support.v4.widget.DrawerLayout>
</android.support.design.widget.CoordinatorLayout>
2.2 네비게이션 드로어 설정
네비게이션 드로어의 기본 설정을 하기 위해 다음 단계를 따릅니다.
2.2.1 네비게이션 메뉴 생성
res/menu
디렉토리에 navigation_menu
라는 이름의 새로운 XML 파일을 생성하고 네비게이션 메뉴를 작성합니다. 이 파일에는 드로어에 표시될 메뉴 아이템이 포함됩니다.
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<group android:checkableBehavior="single">
<item
android:id="@+id/nav_item_1"
android:title="메뉴 1" />
<item
android:id="@+id/nav_item_2"
android:title="메뉴 2" />
<item
android:id="@+id/nav_item_3"
android:title="메뉴 3" />
</group>
</menu>
2.2.2 네비게이션 헤더 추가
네비게이션 드로어에 표시될 헤더 뷰를 작성하기 위해 res/layout
디렉토리에 nav_header.xml
라는 이름의 XML 파일을 생성합니다. 이 파일에는 드로어 헤더에 표시될 이미지, 텍스트 등의 요소가 포함됩니다.
<LinearLayout 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="140dp"
android:background="@color/colorPrimary"
android:gravity="bottom"
android:padding="16dp"
android:theme="@style/ThemeOverlay.AppCompat.Dark">
<ImageView
android:layout_width="56dp"
android:layout_height="56dp"
android:src="@drawable/ic_launcher_foreground"
android:tint="@color/colorAccent"
app:srcCompat="@drawable/ic_launcher_foreground" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingTop="4dp"
android:text="네비게이션 헤더"
android:textColor="@android:color/white"
android:textAppearance="@style/TextAppearance.AppCompat.Body1" />
</LinearLayout>
2.2.3 네비게이션 리스너 등록
드로어의 아이템이 선택되었을 때 동작을 구현하기 위해 액티비티에 네비게이션 리스너를 등록합니다.
public class MainActivity extends AppCompatActivity implements NavigationView.OnNavigationItemSelectedListener {
private DrawerLayout drawerLayout;
private NavigationView navigationView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
drawerLayout = findViewById(R.id.drawer_layout);
navigationView = findViewById(R.id.nav_view);
navigationView.setNavigationItemSelectedListener(this);
ActionBarDrawerToggle toggle = new ActionBarDrawerToggle(this, drawerLayout, R.string.navigation_drawer_open, R.string.navigation_drawer_close);
drawerLayout.addDrawerListener(toggle);
toggle.syncState();
}
@Override
public boolean onNavigationItemSelected(@NonNull MenuItem item) {
// 네비게이션 아이템 클릭 시 동작 구현
drawerLayout.closeDrawer(GravityCompat.START);
return true;
}
@Override
public void onBackPressed() {
// 뒤로 가기 버튼 시 드로어 닫기
if (drawerLayout.isDrawerOpen(GravityCompat.START)) {
drawerLayout.closeDrawer(GravityCompat.START);
} else {
super.onBackPressed();
}
}
}
3. 결과 확인
위에서 설정한 내용대로 앱을 실행하면 네비게이션 드로어가 사용 가능한 상태가 됩니다. 드로어를 열고 닫는 동작, 드로어 메뉴 아이템 선택 시 동작 등을 확인할 수 있습니다.
이제 네비게이션 드로어를 사용하는 앱을 개발할 준비가 되었습니다.
위 내용은 안드로이드에서 네비게이션 드로어를 사용하기 위한 가장 기본적인 설정에 대해 소개한 것입니다. 필요에 따라 추가적인 설명과 기능 구현을 하는 것이 좋습니다.
댓글