Click here to Skip to main content
15,878,814 members
Everything / Programming Languages / Kotlin

Kotlin

Kotlin

Great Reads

by Ivan Osipov
We'll discuss why Kotlin is a great tool for domain specific language building
by ookami.kb
Turn Android app into Kiosk App
by Igor Kushnarev
Native windows with Kotlin Native for Linux and Windows platforms
by Igor Kushnarev
Using Vulkan API with Kotlin Native example

Latest Articles

by Ayat Rakhishev
A walkthrough of dynamic programming
by Ivan Osipov
We'll discuss why Kotlin is a great tool for domain specific language building
by AmrDeveloper
How to get any Adapter class from model class easily and quickly
by AmrDeveloper
How to create a simple bot creator in Kotlin using only 33 lines of code

All Articles

Sort by Score

Kotlin 

6 Jun 2022 by Ivan Osipov
We'll discuss why Kotlin is a great tool for domain specific language building
19 Jul 2018 by ookami.kb
Turn Android app into Kiosk App
31 Mar 2019 by Igor Kushnarev
Native windows with Kotlin Native for Linux and Windows platforms
2 Jan 2022 by Luc Pattyn
it looks like bmp is null due to resourceId being zero. And you did not show any code that sets resourceId...
27 Aug 2017 by RickZeeland
This might be of interest to you too: [Top 10 Programming Languages in 2017] It is a bit superficial, but gives a good overview. Also interesting: Stack Overflow Developer Survey 2017[^] 'Most popular' does not mean that these are the best languages for you, although the GO language is listed...
27 Mar 2019 by Igor Kushnarev
Using Vulkan API with Kotlin Native example
26 Apr 2019 by Igor Kushnarev
Vulkan surface, physical and logical devices with Kotlin Native
26 Apr 2019 by Igor Kushnarev
Vulkan API with Kotlin Native. Drawing loop.
31 Jul 2019 by Richard Deeming
Quote: at com.example.mycalculator.MainActivity$textWatcher$1.beforeTextChanged(MainActivity.kt:101) Quote: override fun beforeTextChanged(p0: CharSequence?, p1: Int, p2: Int, p3: Int) { TODO("not implemented") //To change body of created functions use File | Settings | File...
14 Nov 2019 by Bloody Chicken
Algorithm for printing an bitmap image with textwrapping and alignment in ESC/POS thermal printer.
17 Aug 2020 by Sandeep Mewara
You can pass data by attaching a callback into your adapter. Steps: 1. Create an interface 2. Delegate the callback 3. Implement the fragment with the interface Here, have a look at this: java - How to pass or send data from recyclerview adapter...
17 Aug 2020 by OriginalGriff
We can't run that code under the same conditions you do: we don;t have access to the rest of your code or to the data it is working with. And with runtime errors, that's pretty important! Heck, we don;t even know where the error occurs in that...
19 Aug 2020 by Richard MacCutchan
This is the third time you have posted this same question (https://www.codeproject.com/Questions/5277013/I-want-to-know-how-pass-data-from-one-fragment-to[^]), and received a number of suggestions. If the suggestions do not work then please reply...
6 Oct 2020 by OriginalGriff
This is one of the most common problems we get asked, and it's also the one we are least equipped to answer, but you are most equipped to answer yourself. Let me just explain what the error means: You have tried to use a variable, property, or a...
7 Oct 2020 by Sandeep Mewara
You know the line and the error. Quote: postList!!.add(post!!) You use !! operator. !! will throw NullPointerException if the value is null. With !!, if postList is null OR post is null, it will raise the error. Look at the reason, handle the...
20 Oct 2020 by OriginalGriff
When you get an error message you don't understand, google it: Found setter with invalid case-sensitive name - Google Search[^] The first link tells you what causes it! See here: Java Encapsulation and Getters and Setters[^] And read what it...
23 Oct 2020 by Richard MacCutchan
Look at the documentation for help: Delete Files on Web �|� Firebase[^]
25 Nov 2020 by OriginalGriff
You're running late - the rest of your class was trying to get us to do this homework last week ... But I'll tell you what we told them: Quote: We are more than willing to help those that are stuck: but that doesn't mean that we are here to do it...
8 Jul 2021 by Richard MacCutchan
I am not a kotlin expert, but ... crewCrewCrew.forEach { mammalFactCheck(it, Mammal::vertebraeCount) mammalFactCheck(it, Mammal::knownSpeciesCount) } ... appears to be a loop which iterates over the entries in the crewCrewCrew list...
25 Dec 2023 by Dave Kreskowiak
Without the error message printed to the console window by the e.printStackTrace method in your trry/catch block, it's impossible for anyone to tell you what's going wrong.