반응형 frameLayout2 [Kotlin] Fragment 와 BottomNavigationView 사용 dependencies 에 다음 추가. (이미 있을수도) implementation 'com.google.android.material:material:1.8.0' 테스트 해볼 새로운 Empty Activity 생성 Layout 파일에서 ConstraintLayout 을 LinearLayout 으로 변경 (이 작업은 필수는 아닙니다. 위에는 pager, 아래는 tabLayout 만 배치하면 됩니다.) root layout 에 android:orientation="vertical" 을 추가합니다. Layout 은 아래와 같은 코드입니다. FrameLayout 에는 Fragment 가 들어갑니다. 그리고 BottomNavigationView 의 menu 는 아래와 같습니다. Fragment 를 3개를 생성해.. 2023. 7. 31. [Kotlin] FrameLayout 사용해서 Fragment 써보기 androidx.fragment 1.2.0 이상부터 쓸 수 있는 FragmentContainerView 가 있습니다. FragmentContainerView 를 사용하는 방법은 여기에 작성했습니다. Fragment 를 생성합니다. 생성할 위치에서 New > Fragment > Fragment(Blank) 를 클릭해서 만듦니다. 그리고 fragment 의 layout 에 EditText 나 Button 등을 몇개 추가합니다. 그리고 Activity 에 아래와 같은 FrameLayout 을 추가합니다. 그리고 MainActivity.kt 의 onCreate 에 아래 코드를 입력합니다. supportFragmentManager .beginTransaction() .replace(binding.mainFrame.. 2023. 7. 28. 이전 1 다음 728x90 반응형