david.bilik
03/22/2018, 11:16 AMjoseph_ivie
03/26/2018, 9:54 PM::(),
joseph_ivie
03/26/2018, 10:09 PMjoseph_ivie
03/26/2018, 11:06 PMjosephivie
04/03/2018, 7:56 PMalbertgao
04/15/2018, 11:17 PMindeterminateProgressDialog
non cancellable? There is a isCancelable
property for alert
, but seems not the case for indeterminateProgressDialog
, how to solve it?josephivie
07/12/2018, 8:55 PMLeoColman
08/01/2018, 12:32 AMLeoColman
08/10/2018, 1:45 PMghosalmartin
08/13/2018, 1:43 PMtania
08/30/2018, 7:06 PMbryan
09/04/2018, 6:42 PMprivate var instructionsView: DialogInterface? = null
private fun showInstructionView() {
instructionsView?.dismiss()
instructionsView =
context.alert {
customView {
include<View>(R.layout.instruction_view)
}
onCancelled { App.unwindToMainMenu() }
}.show()
Is there any way to animate this so it fades into/out of view?Allan Wang
09/18/2018, 7:58 PMdoAsync
over general Android coroutines anymore? Especially if we only use doAsync
and uiThread
?tateisu
09/28/2018, 5:58 AMribesg
09/28/2018, 9:00 AMChristian Goldapp
10/08/2018, 12:35 PMandy.burdett
10/10/2018, 9:18 AMJean Mainguy
11/02/2018, 9:59 AMonClick{ }
, any idea what to use instead?hallvard
11/16/2018, 7:34 AMdelay()
in any coroutine, but not when using Anko's doAsync { }
. What am I missing? How should I handle it?nickk
12/19/2018, 6:03 PMUnsupportedOperationException
?
themedEditText
works fine, for instance.
// fine
textView("> Hello from code $count") {
}
// crashes
themedTextView("> Hello from code $count", theme = R.style.TextLarge2) {
}
AS 3.2, anko 0.10.8LeoColman
01/09/2019, 6:00 PMnickk
01/10/2019, 12:25 PMnickk
02/09/2019, 10:47 AMLeoColman
02/18/2019, 6:17 PMribesg
02/25/2019, 10:33 AMBenoît
04/23/2019, 6:22 PMhttps://www.youtube.com/watch?v=MmUCau26tLg▾
Tsvetozar Bonev
05/29/2019, 6:11 AMnickk
07/26/2019, 1:46 PMamadeu01
10/03/2019, 1:52 PMimplementation "org.jetbrains.anko:anko-sdk25:$anko_version" // sdk15, sdk19, sdk21, sdk23 are also available
But, what is the difference between sdk25
and others? I mean, if my android project is supporting a minimum target of sdk 19, I should import all the anko sdks from 19 to 25 ?yan
12/01/2019, 6:00 PMyan
12/01/2019, 6:00 PMlouiscad
12/01/2019, 7:39 PMhugo.matilla
12/02/2019, 3:41 PMAnkoLogger
as my default Logger, is there something that you recommend in substitution like Timber? @louiscad I don’t see nothing in splitties. Is there something that I didn’t see? Any plans to add it?
Finally I will just use this spot to thank you to both of you for your work and contribution to the Kotlin community 💯🥇❤️louiscad
12/02/2019, 4:20 PMTimber
. Splitties is now headed multiplatform, so if I was to add a logger, I'd want to make a multiplatform API (making the task a little tougher). It's not my focus right now and it requires some time to think about how to do it right, so ideas and use cases are welcome. Feel free to open an issue in Splitties project or start a discussion in #splitties channel.hugo.matilla
12/02/2019, 4:34 PMyan
12/03/2019, 9:21 AMhugo.matilla
12/03/2019, 9:44 AMthymecypher
12/09/2019, 8:45 PMlouiscad
12/09/2019, 9:27 PMthymecypher
12/09/2019, 9:49 PMcaelum19
09/09/2020, 6:42 PM