[โ ๊ธฐ๋ณธ์ ์ธ ์ฐธ๊ณ ] kotlin xml ์์ ์ฐธ์กฐ
https://itstudy-mary.tistory.com/340
plugins {
...
id 'kotlin-android'
id 'kotlin-android-extensions'
}
https://developer.android.com/guide/navigation/navigation-getting-started#java
0. [์ค์ ์ฌํญ]ํ ์กํฐ๋นํฐ๋ฅผ ํ ์ฒ๋ผ ๋๊ณ , ํ๋ ๊ทธ๋จผํธ๋ก ํ๋ฉด ์ ํ์ ํ ์์ (ํ๋ ๊ทธ ๋จผํธ 4๊ฐ - main, question, selection, result)
1. ์์ ์ฌ์ดํธ์์ dependancy์ ์๋ ์ถ๊ฐ
val nav_version = "2.3.5"
// Kotlin
implementation("androidx.navigation:navigation-fragment-ktx:$nav_version")
implementation("androidx.navigation:navigation-ui-ktx:$nav_version")
2. MainActivity์ "fragment"์์๋ฅผ ๋๋ค. (์ ๋ฌธ์์๋ ์์ฑ๋์ด์์)
2-1 . ๋ค๋น๊ฒ์ด์ ๊ธฐ๋ณธ ๋๋ ํฐ๋ฆฌ๋ฅผ ๋ง๋ ๋ค. ํ๋ ๊ทธ๋จผํธ๋ 4๊ฐ (0๋ฒ์์ ์ค์ ํ) ๋ง๋ ๋ค. ๋ค๋น๊ฒ์ด์ ํ์ผ์ ๋ง๋ค๊ณ 4๊ฐ์ ํ๋ ๊ทธ๋จผํธ๋ฅผ ์ธํ ํ๋ค. ๋๋๊ทธ๋ก ์ ํํ๋ ๋ถ๋ถ์ ์ฐ๊ฒฐ ์ง๋ ์์ผ๋ก graph๋ฅผ ๋ง๋ ๋ค.
<androidx.fragment.app.FragmentContainerView
android:id="@+id/nav_host_fragment"
android:name="androidx.navigation.fragment.NavHostFragment"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:defaultNavHost="true"
app:navGraph="@navigation/nav_graph" />
์์์ ์๋๋ NavHost๋ NavController๋ฅผ ๋ฐํํ๋ ์ธํฐํ์ด์ค์ด๋ค.
app:defaultNavHost="true"
MainActivity์์๋ ์๋์ ๊ฐ์ด ์ปจํธ๋กค๋ฌ๋ฅผ ์ฐพ๋๋ค. ์ด ์ปจํธ๋กค๋ฌ๋ ๋์์ผ๋ก ์ด๋ํ๋ ๊ฒ์ NavController ๊ฐ์ฒด๋ฅผ ์ฌ์ฉํ์ฌ ์คํ๋๋ฉฐ ์ด ๊ฐ์ฒด๋ NavHost ๋ด์์ ์ฑ ํ์์ ๊ด๋ฆฌํ๋ค.
lateinit var navController :NavController
navController = nav_fragment.findNavController()
3. Bundle๋ก ๋ฐ์ดํฐ ์ฃผ๊ณ ๋ฐ๊ฒ ํ๊ธฐ
3-1. ๋ฐ์ดํฐ ๋ณด๋ด๋ SelectionFragment
class SelectionFragment : Fragment() , View.OnClickListener{
lateinit var navController: NavController
override fun onCreateView(
inflater: LayoutInflater, container: ViewGroup?,
savedInstanceState: Bundle?
): View? {
// Inflate the layout for this fragment
return inflater.inflate(R.layout.fragment_selection, container, false)
}
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
super.onViewCreated(view, savedInstanceState)
navController = Navigation.findNavController(view)
btn_back.setOnClickListener(this)
selection_1.setOnClickListener(this)
selection_2.setOnClickListener(this)
selection_3.setOnClickListener(this)
selection_4.setOnClickListener(this)
}
override fun onClick(v: View?) {
// ๋ฐ์์จ ๋ทฐ๊ฐ null์ด ์๋๋ฉด id ๋ฅผ ๊ฐ์ ธ์ค๊ณ , ๋ง์ฝ view๊ฐ null์ด๋ผ๋ฉด ์๋ ์ ์ฒด when ์ Null์ ๋ฐํํ๊ฒ ๋๋ค.
when(v?.id){
R.id.selection_1 ->{ navigateWithIndex(1) }
R.id.selection_2 ->{ navigateWithIndex(2) }
R.id.selection_3 ->{ navigateWithIndex(3) }
R.id.selection_4 ->{ navigateWithIndex(4) }
R.id.btn_back->{
/*** ํ๋ ๊ทธ๋จผํธ๋ ์ด๋์ ํ ๋ ํญ์ BackStack์ ํ๋ ๊ทธ๋จผํธ๊ฐ ์์. ๋ค๋ก๊ฐ๊ธฐ๋ ๊ทธ๋์ ํ๋์ฉ ์คํ์ ์๋ ๊ฑธ ํํด์ฃผ๋ฉด ๋๋ ๊ฒ*/
navController.popBackStack()
}
}
}
// ํ๋ ๊ทธ๋จผํธ๋ก ๊ฐ์ ๋ณด๋ด์ฃผ๊ธฐ ์ํด์, Bundle๋ก ๊ฐ์ ๋ณด๋ด์ค๊ฑฐ์.
fun navigateWithIndex(value : Int){
// key - value
val bundle = bundleOf("index" to value)
navController.navigate(R.id.action_selectionFragment_to_resultFragment,bundle)
}
}
3-2. ๋ฐ์ดํฐ ๋ฐ๋ resultFragment
class ResultFragment : Fragment() {
// var option : Int? = -1
var option = -1
// ๋ฒ๋ค ๋์ด์จ ๊ฐ
lateinit var navController: NavController
override fun onCreateView(
inflater: LayoutInflater, container: ViewGroup?,
savedInstanceState: Bundle?
): View? {
// option = arguments?.getInt("index") // argument๊ฐ null ์ผ ์ ์๋ ๊ฒ์
// arguments ๋ก ๋ฒ๋ค ๊ฐ์ด ๋์ด ์ค๋ ๊ฒ.
option = arguments?.getInt("index")?:-1 // argument๊ฐ null ์ผ ์ ์๋ ๊ฒ์ธ๋ฐ ?๋ฅผ ์ฌ์ฉํด์ null์ผ ๋๋ -1์ ๋ฆฌํด
// Inflate the layout for this fragment
return inflater.inflate(R.layout.fragment_result, container, false)
}
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
super.onViewCreated(view, savedInstanceState)
navController = Navigation.findNavController(view)
setResult(option)
back_home.setOnClickListener {
navController.navigate(R.id.action_resultFragment_to_mainFragment)
}
}
fun setResult(option : Int)
{
when(option){
1 ->{
// textView_sub.setText("") ๊ฐ๋ค.
textView_sub.text = "1 result"
}
2 ->{ textView_sub.text = "2 result"}
3 ->{ textView_sub.text = "3 result"}
4 ->{ textView_sub.text = "4 result"}
}
}
}
4. ํจ์
ํจ์ ํค๋ - (์๋ต ๊ฐ๋ฅ)๊ฐ์์ฑ ์ ํ์/ํจ์ ์ ์ธ ํค์๋ / ํจ์ ์ด๋ฆ/ ํจ์ ๋งค๊ฐ๋ณ์ / ๋ฐํํ์
์ฝํ๋ฆฐ ๊ธฐ๋ณธ ๊ฐ์์ฑ ์ ํ์ : public (private ์ ์ฐ๋ฉด ํด๋น .kt ์์์๋ง ํจ์ ์ฌ์ฉ)
ํจ์ ๋งค๊ฐ๋ณ์๋ ํญ์ ์ฝ๊ธฐ ์ ์ฉ - ์ฆ, ํจ์ ๋ชธ์ฒด ๋ด๋ถ์์ ๊ฐ ๋ณ๊ฒฝ ํ ์ ์์ผ๋ฏ๋ก val์.
ํจ์ ๋ฐ๋ - ํค๋ ๋ค์์ ์ค๊ดํธ { }๋ฅผ ์ฌ์ฉํด์ ํจ์ ๋ชธ์ฒด๋ฅผ ์ ์ํ๋ค.
โฒ ์ง์ญ๋ณ์์ ํ์ผ ์์ค ๋ณ์๋ ์ด๊ธฐํ๋ ๊ฐ์ ์ง์ ํ ๋ ์ฐจ์ด์ ์ด ์๋ค. ํ์ผ ์์ค ๋ณ์๋ ํญ์ ์ ์ธ๋ ๋ ์ด๊น๊ฐ์ด ์ง์ ๋์ด์ผ ํ๋ฉฐ, ๊ทธ๋ ์ง ์์ผ๋ฉด ์ปดํ์ผ ์๋ฌ ๋ฐ์ํ๋ค.
๋จ์ผ ํํ์ ํจ์ - ํค๋์ ์ ์ํ๋ ๋ฐํ ํ์ , ๋ชธ์ฒด๋ฅผ ๋ํ๋ด๋ ์ค๊ดํธ, ๋ชธ์ฒด ๋ด๋ถ์ return ๋ฌธ์ ๋ชจ๋ ์๋ตํ ์ ์๋ค.
๋ฆฌํด ํ์ ์๋ ํจ์ - Unit (์๋ต ๊ฐ๋ฅ), Nothing
: ๋์ ์ฐจ์ด์ - Nothing ํ์ ์ ํจ์์ ์คํ์ด ๋๋๋๋ผ๋ ํธ์ถ ์ฝ๋๋ก ์ ์ด๊ฐ ๋ณต๊ท๋์ง ์๋๋ค. Nothing ํ์ ์
์ฉ๋๋ ์๋์ ์ผ๋ก ์์ธ๋ฅผ ๋ฐ์์ํฌ ๋ ์ฌ์ฉํ ์ ์๋ค.
Todo ํจ์์ Nothing์ด ์ฌ์ฉ๋๋๋ฐ, Todoํจ์๋ ์์ธ๋ฅผ ๋ฐ์์ํค๋ฉฐ Nothing ํ์ ์ ๋ฐํํ๋ค.
→ Todo๋ฅผ ์ฌ์ฉํ ๋ : ์ฌ์ ํ ํด์ผ ํ ๊ฒ์ด ์๋ค๋ ๊ฒ์ ์๋ ค ์ฃผ๊ธฐ ์ํด ์ฌ์ฉ๋๋ค.
↓ ํจ์ ์ค๋ฒ๋ก๋ฉ: ํจ์ ์ด๋ฆ์ ๊ฐ์ง๋ง ๋งค๊ฐ๋ณ์ ํ์ ์ด ์ฌ๋ฌ๊ฐ์ธ
fun sum(a: Int b: Int) : Int {
return a+b
}
fun sum(a: Double b: Double c: Double) : Double {
return a+b+C
}
๋ฐฑํฑ ํจ์ ์ด๋ฆ
'Kotlin' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
Kotlin_Map / Class (0) | 2021.07.01 |
---|---|
Kotlin - Scope ํจ์ & List์ Set (0) | 2021.06.30 |
Kotlin_Null & ๋ฌธ์์ด & ์ซ์ ํ์ (2) | 2021.06.30 |
Kotlin - ์ต๋ช ํจ์์ ํจ์ ํ์ (1) | 2021.06.30 |
Kotlin ๊ธฐ๋ณธ ๋ฌธ๋ฒ - Intro ( ๊น์ด ๋ค๋ฃจ์ง ์์!) (0) | 2021.06.28 |
๋๊ธ