์ฑ ๋ด์์ ์ฌ์ฉ์๊ฐ ๋ค์ํ ํ๋ฉด(์กํฐ๋นํฐ๋ ํ๋๊ทธ๋จผํธ) ์ฌ์ด๋ฅผ ์ด๋ํ ์ ์๊ฒ ๋์์ฃผ๋ ์ค์ํ ๊ตฌ์ฑ ์์
๋ณดํต ํ๋์ Activity์์ ์ฌ๋ฌ Fragment ์ฌ์ด๋ฅผ ์ด๋ํ ๋ ์ด๋ค.
๋ค๋ฅธ Activity๋ก ์ด๋ํ ๋๋ Intent๋ก ์ด๋ํ์.
์ฃผ๋ก ๋จ์ผ ์กํฐ๋นํฐ ๋ด์์ ์ฌ๋ฌ ํ๋๊ทธ๋จผํธ ๊ฐ์ ์ด๋์ ์ฉ์ดํ๊ฒ ํ๋ ๋ฐ ์ฌ์ฉ
์ด๋ฅผ ํตํด ์ ํ๋ฆฌ์ผ์ด์
์ ๋ด๋น๊ฒ์ด์
๋ก์ง์ ๋จ์ํํ๊ณ ์ค์ ์ง์คํํ ์ ์๋ค.
์ฑ์ MainActivity์ ๋ฐฐ์น๋๋ค. ๋๋ถ๋ถ์ ๊ฒฝ์ฐ NavHostFragment๋ฅผ ์ฌ์ฉํ์ฌ ํ๋๊ทธ๋จผํธ๋ฅผ ํตํด ๋ด๋น๊ฒ์ด์
์ ๊ด๋ฆฌํฉ๋๋ค.
์ผ๋ฐ์ ์ผ๋ก NavHostFragment๋ ์ฑ์ ๋ฉ์ธ ์กํฐ๋นํฐ ๋ ์ด์์์ ์ ์๋๋ค. ์ดํ NavController ๊ฐ์ฒด๋ฅผ ํตํด ํ๋๊ทธ๋จผํธ ๊ฐ์ ์ด๋(๋ด๋น๊ฒ์ด์
)์ ๊ด๋ฆฌํ๋ค.
๋ด๋น๊ฒ์ด์ ๋์์ ๊ด๋ฆฌํ๋ ๊ฐ์ฒด๋ก, ์ฑ ๋ด์์์ ๋ด๋น๊ฒ์ด์ ๋ก์ง์ ์ฒ๋ฆฌํฉ๋๋ค. ์ฌ์ฉ์๊ฐ ๋ชฉ์ ์ง๋ก ์ด๋ํ ๋ NavController๋ฅผ ์ฌ์ฉํ์ฌ ์ด๋์ ์ง์ํฉ๋๋ค.
๋ด๋น๊ฒ์ด์ ํ๋ฆ์ ์๊ฐ์ ์ผ๋ก ํํํ๋ XML ํ์ผ๋ก, ์ฑ ๋ด์ ๋ชจ๋ ๋ด๋น๊ฒ์ด์ ๊ด๋ จ ์ ๋ณด(๋ชฉ์ ์ง, ์ก์ , ์ ํ ๋ฑ)๋ฅผ ํฌํจํฉ๋๋ค. Android Studio์ Navigation Editor๋ฅผ ์ฌ์ฉํ์ฌ ์ฝ๊ฒ ์์ ํ ์ ์์ต๋๋ค.
์ฌ์ฉ์๊ฐ ๋ด๋น๊ฒ์ด์ ์ ํตํด ๋๋ฌํ ์ ์๋ ์ฑ ๋ด์ ๊ฐ ํ๋ฉด์ ๋ํ๋ ๋๋ค. ์ด๋ ์กํฐ๋นํฐ, ํ๋๊ทธ๋จผํธ ๋๋ ๋ค์ด์ผ๋ก๊ทธ ๋ฑ์ด ๋ ์ ์์ต๋๋ค.
๋ชฉ์ ์ง ๊ฐ์ ์ฐ๊ฒฐ์ ์ ์ํ๋ฉฐ, ์ฌ์ฉ์๊ฐ ํ ํ๋ฉด์์ ๋ค๋ฅธ ํ๋ฉด์ผ๋ก ์ด๋ํ ๋ ์ฌ์ฉ๋ฉ๋๋ค.
<androidx.fragment.app.FragmentContainerView
android:id="@+id/nav_host_fragment"
android:name="androidx.navigation.fragment.NavHostFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:defaultNavHost="true"
app:navGraph="@navigation/nav_graph" />
<navigation xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/nav_graph"
app:startDestination="@id/loginFragment">
<fragment
android:id="@+id/loginFragment"
android:name="com.example.myapp.LoginFragment"
android:label="๋ก๊ทธ์ธ ํ๋ฉด">
<action
android:id="@+id/action_loginFragment_to_mainFragment"
app:destination="@id/mainFragment" />
</fragment>
<fragment
android:id="@+id/mainFragment"
android:name="com.example.myapp.MainFragment"
android:label="๋ฉ์ธ ํ๋ฉด" />
</navigation>
class LoginFragment : Fragment() {
override fun onCreateView(
inflater: LayoutInflater, container: ViewGroup?,
savedInstanceState: Bundle?
): View {
return inflater.inflate(R.layout.fragment_login, container, false)
}
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
super.onViewCreated(view, savedInstanceState)
val loginButton = view.findViewById<Button>(R.id.login_button)
loginButton.setOnClickListener {
//๋ก๊ทธ์ธ ์ฑ๊ณต ํ ๋ฉ์ธ ํ๋ฉด์ผ๋ก ์ด๋
findNavController().navigate(R.id.action_loginFragment_to_mainFragment)
}
}
}