Kotlin multiplatform standard • Kotlin multiplatform standard provides a standard setup for Kotlin multiplatform projects. With this setup, you'll be able to share Kotlin code between Android, JVM and
Awesome Android Kotlin Apps �� A curated list of awesome android kotlin apps by open-source contributors. Awesome Android Kotlin Apps aims to be the starting point for developers to find an Android ap
From Java To Kotlin From Java To Kotlin - Your Cheat Sheet For Java To Kotlin 中文支持 Português Español Print to Console Java System.out.print("Amit Shekhar");System.out.println("Amit Shekhar"); Kotlin p
Model-View-ViewModel (ie MVVM) Model-View-ViewModel (ie MVVM) is a template of a client application architecture, proposed by John Gossman as an alternative to MVC and MVP patterns when using Data Bin
README This is an android application template project built with kotlin language and some useful libraries. It provides a creator script to quickly create an project from template. Creating project M
Kotlin Coroutines - Use Cases on Android �� Learning Kotlin Coroutines for Android by example. �� Sample implementations for real-world Android use cases. �� Unit tests included! This repository is in
kotlin-android-template �� A simple Github template that lets you create an Android/Kotlin project and be up and running in a few seconds. This template is focused on delivering a project with static
Kotlin Code Sorter 一个可以对kotlin代码排序的小插件.最近在日常的开发中,发现kotlin的代码排列不如Java的好,在IDEA或者AndroidStudio里面Java的字段一般在前,方法在后,看起来比较感觉比较好.但是在kotlin中覆写的变量和函数是根据覆写的先后顺序来排列的,后写的在前面,先写的在后面.而且字段和函数是穿插排列的,真是逼死强迫症, 有了这个小插件,轻
Spinner 应用是一款利用 OpenGL 开发而成的简单游戏。这是一个简单的 spinner 类游戏,旨在演示 Kotlin/Native 的全栈开发特性。这是在所有平台上实现使用 Kotlin 开发的重要一步。 其可同时运行在 iOS 及 Android 平台之上(下面附有 Play Store 的链接),且两个版本中的大部分代码彼此共享。其 iOS 版本拥有几项额外功能,例如游戏中心集成等
该项目为仿 b 站项目的 kotlin 版,大部分界面采用 kotlin 编程,由于本人水平有限,有些 kotlin 写法不规范,后期有时间会逐步完善,和原项目一样采用 rxjava2+okhttp+retrofit+mvp+dagger2 为主要框架。 截图:
做安卓开发用java不是够了么, 为什么老是出各种奇奇怪怪的语言呢:(
Kotlin 如何使用 SearchBar + SearchView? https://m3.material.io/components/search/overview 显示 Jetpack Compose 的还在计划中,但是有 MDC 的 能否在 Kotlin 里使用 MDC 提供的 SearchBar + SearchView? 如果可以,应该怎么使用?
我在测试在kotlin的协程里使用网络io是否会导致线程阻塞 测速结果是InputStream.read确实导致线程阻塞了,而不是挂起。 那么运行在统一个线程下的其他协程也不能运行了,我知道可以使用 这些方式把网络请求放入其他线程 但是我想知道的是如果这两个协程都必须运行在同一个线程里时,是否可以通过修改代码(比如异步io等方式)确保第一个协程能每秒打印一次,第二个协程能在接收到数据时及时打印。