Skip to content

Instantly share code, notes, and snippets.

View RajeshNaddy's full-sized avatar
💭
DREAM BIG!!

Rajesh Naddy RajeshNaddy

💭
DREAM BIG!!
  • Mumbai,Maharashtra,India
View GitHub Profile
@RajeshNaddy
RajeshNaddy / BaseActivity.txt
Last active June 8, 2019 18:09
BaseActivity Kotlin
abstract class BaseActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
//initialize() initialize if you want anything
}
internal fun showToast(message: String) {
Toast.makeText(this, message, Toast.LENGTH_SHORT).show()
}