-
-
Save codeforfun-jp/70d688340561bf2520c04e84faff8971 to your computer and use it in GitHub Desktop.
[Kotlin Quiz ver2] 7-1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class ResultActivity : AppCompatActivity() { | |
| private lateinit var binding: ActivityResultBinding | |
| override fun onCreate(savedInstanceState: Bundle?) { | |
| super.onCreate(savedInstanceState) | |
| enableEdgeToEdge() | |
| binding = ActivityResultBinding.inflate(layoutInflater) | |
| setContentView(binding.root) | |
| ViewCompat.setOnApplyWindowInsetsListener(findViewById(R.id.main)) { v, insets -> | |
| /* 省略 */ | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment