반응형
Notice
Recent Posts
Recent Comments
Link
불로구
안드로이드 스튜디오 - Fragment에서 Activity로 데이터 전송 본문
반응형
fun receive_Menu_Button(button_Type : Int){
menu_Stat = button_Type
}
MainActivity에 함수하나를 만들고
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
super.onViewCreated(view, savedInstanceState)
val menu1 = view.findViewById<Button>(R.id.menu1)
val menu2 = view.findViewById<Button>(R.id.menu2)
val menu3 = view.findViewById<Button>(R.id.menu3)
val menu4 = view.findViewById<Button>(R.id.menu4)
val mActivity = activity as MainActivity
menu1.setOnClickListener {
mActivity.receive_Menu_Button(1)
}
menu2.setOnClickListener {
mActivity.receive_Menu_Button(2)
}
menu3.setOnClickListener {
mActivity.receive_Menu_Button(3)
}
menu4.setOnClickListener {
mActivity.receive_Menu_Button(4)
}
}
프레그먼트에서 onViewCreated메서드를 이용하여 전송
반응형
'프로그래밍 > 코틀린 안드로이드' 카테고리의 다른 글
코틀린 MVP패턴 아키텍쳐 (1) - 이론 (0) | 2021.04.20 |
---|---|
안드로이드 스튜디오 - Firebase를 이용한 푸시알람 (수정대기) (0) | 2021.04.18 |
안드로이드 스튜디오 - Fragment<프레그먼트> ( 실습편1 ) (0) | 2021.04.12 |
안드로이드 스튜디오 - Fragment<프레그먼트> ( 개념편 ) (0) | 2021.04.12 |
안드로이드(Kotlin) - LiveData (0) | 2021.04.06 |
Comments