앞선 Navigation Component의 글의 보충 내용입니다. https://jja2han.tistory.com/373 [Android] - Navigation Component 기존의 Fragment간의 이동을 구현할 때 supportFragmentManager.beginTransaction(). replace(R.id.frame_layout,GameFragment()).commit() 위와 같은 코드를 통해서 프래그먼트 간의 이동을 구현했습니다. 하지만 Android에서 Na jja2han.tistory.com Navigation Component에 대하여.. 1️⃣ Navigation을 통해서 Activity로 이동할 수 있을까? 정답은 가능하다. 나도 사용해 보기 전까지는 Activity에 ..
Navigation Component
기존의 Fragment간의 이동을 구현할 때 supportFragmentManager.beginTransaction(). replace(R.id.frame_layout,GameFragment()).commit() 위와 같은 코드를 통해서 프래그먼트 간의 이동을 구현했습니다. 하지만 Android에서 Navigation이라는 컴포넌트를 통해서 간단하게 프래그먼트 끼리의 이동을 구현할 수 있습니다. 해당 내용은 공식문서를 통해서 공부했고, 그에 대한 제 생각을 적어봤습니다. Navigation 공식문서에 따르면 Navigation의 정의는 아래와 같습니다. Navigation은 Android 애플리케이션 내에서 '대상' 사이를 탐색하는 프레임워크로, 대상이 Fragment, Activity에 관계없이 일관된..