Skip to content

Instantly share code, notes, and snippets.

@alohaabhi
Last active May 20, 2019 03:37
Show Gist options
  • Save alohaabhi/6f26195669878533b3b28e1797922f63 to your computer and use it in GitHub Desktop.
Save alohaabhi/6f26195669878533b3b28e1797922f63 to your computer and use it in GitHub Desktop.
class MainActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
val rootView: ViewGroup = findViewById(R.id.activity_main)
val inflater = LayoutInflater.from(this)
val red = inflater.inflate(R.layout.rectangle, rootView, true)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment