Keybase – the best tool for encrypted communication available for most desktop & mobile operating systems
Tag Archives: android
Progress dialog in Anko
Jumping directly in: val dialog = progressDialog(message = “Please wait a bit…”, title = “Fetching data”) There are of course also: dialog.show()dialog.dismiss() It is said that ‘an indeterminate progress dialog is also available’. See: indeterminateProgressDialog()
Log.v(), Log.d(), Log.i(), Log.w() and Log.e() – When to use each one?
I found a wonderful explanation of these on Stackoverflow and I stole them from Kurtis Nusbaum so you won’t have to. You’re welcome! So… you come to me and ask: When and which one to use? Let me (that is… him) tell you what I stole: Log.e: This is for when bad stuff happens. Use …
Continue reading “Log.v(), Log.d(), Log.i(), Log.w() and Log.e() – When to use each one?”