[Android Studio] kotlin to Java 변환하기
: 아래와 같은 코틀린 코드를 java 코드로 변환해 봤습니다. class MainActivity2 : ComponentActivity() { override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContent { RC100_APPTheme { // A surface container using the 'background' color from the theme Surface( modifier = Modifier.fillMaxSize(), color = MaterialTheme.colors.background ) { Greeting("Android") } } } } } @Composable fun..