android fragment to fragment1 [Android] 화면 이동 방법 정리 이번 예제는 내가 알고 있는 화면 전환 방법들에 대해 정리해보겠다. 1. intent를 이용한 화면이동 intent를 이용하는 방법은 생각보다 구글에 많이 나와있어 쉽게 알아낼수 있다. // 가장 기본적인 intent 사용 방법 val intent = Intent(this, SecondActivity::class.java) startActivity(intent) 이건 가장 기본적인 intent 사용법이다. 그리고 저 예제 코드는 startActivity(this, SecondActivity::class.java)로 바꿔 쓸수 있다. 1-1. putExtra putExtra는 intent를 사용할때 데이터를 보내는 메서드로, 다음과 같이 사용할수 있다. class MainActivity: Appcompat.. 2022. 4. 12. 이전 1 다음 728x90