상세 컨텐츠

본문 제목

Android - Bottom Navigation

Android

by yjh0922 2022. 7. 27. 14:10

본문

1. Manger를 눌러서 Navigation을 선택해준다.

2. 새로운 Resource를 만들어준다.

3. 필요한 프레그먼트화면을 만들어준다.

 

작성자가 만든 프레그먼트화면 코드

<fragment
        android:id="@+id/firstFragment"
        android:name="com.ygh547.tab.FirstFragment"
        android:label="첫번째"
        tools:layout="@layout/fragment_first" />
    <fragment
        android:id="@+id/secondFragment"
        android:name="com.ygh547.tab.SecondFragment"
        android:label="두번째"
        tools:layout="@layout/fragment_second" />
    <fragment
        android:id="@+id/thirdFragment"
        android:name="com.ygh547.tab.ThirdFragment"
        android:label="세번째"
        tools:layout="@layout/fragment_third" />

관련글 더보기