Skip to content

Instantly share code, notes, and snippets.

@malwinder-s
Last active April 3, 2018 21:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save malwinder-s/9147a2b78daa18150511f11ae7a393c6 to your computer and use it in GitHub Desktop.
Save malwinder-s/9147a2b78daa18150511f11ae7a393c6 to your computer and use it in GitHub Desktop.
Example of non boilerplate code
private fun launch(id: String, name: String, totalScore: Int, className: Class) {
val intent = Intent(this, className)
intent.replaceExtras(getExtras(id, name, totalScore))
startActivity(intent)
}
private fun getExtras(id: String, name: String, totalScore: Int): Bundle {
val extras = Bundle()
extras.putString(EXTRA_STUDENT_ID, id)
extras.putString(EXTRA_STUDENT_NAME, name)
//Suppose "totalScore" is score of student in 5 subjects.
val totalPercentage = totalScore / 5
extras.putString(EXTRA_STUDENT_PERCENTAGE, totalPercentage)
return extras
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment