Slide 1

Slide 1 text

Android KTX Jake Wharton

Slide 2

Slide 2 text

Android KTX Jake Wharton

Slide 3

Slide 3 text

val userLayout: ViewGroup = findViewById(R.id.users) for (index in 0 until userLayout.childCount) { val view = userLayout.getChildAt(index) // Do something with index and view… }

Slide 4

Slide 4 text

fun ViewGroup.forEachIndexed(action: (Int, View) -> Unit) { for (index in 0 until childCount) { action(index, getChildAt(index)) }Z } val userLayout: ViewGroup = findViewById(R.id.users) for (index in 0 until userLayout.childCount) { val view = userLayout.getChildAt(index) // Do something with index and view… }A

Slide 5

Slide 5 text

fun ViewGroup.forEachIndexed(action: (Int, View) -> Unit) { for (index in 0 until childCount) { action(index, getChildAt(index)) }Z } val userLayout: ViewGroup = findViewById(R.id.users) for (index in 0 until userLayout.childCount) { val view = userLayout.getChildAt(index) // Do something with index and view… }A

Slide 6

Slide 6 text

fun ViewGroup.forEachIndexed(action: (Int, View) -> Unit) { for (index in 0 until childCount) { action(index, getChildAt(index)) }Z }D val userLayout: ViewGroup = findViewById(R.id.users) for (index in 0 until userLayout.childCount) {G val view = userLayout.getChildAt(index) // Do something with index and view… }A

Slide 7

Slide 7 text

fun ViewGroup.forEachIndexed(action: (Int, View) -> Unit) { for (index in 0 until childCount) { action(index, getChildAt(index)) }Z }D val userLayout: ViewGroup = findViewById(R.id.users) userLayout.forEachIndexed {Gindex, view -> // Do something with index and view… }A for ( in 0 until .childCount) val = userLayout.getChildAt(index)

Slide 8

Slide 8 text

fun ViewGroup.forEachIndexed(action: (Int, View) -> Unit) { for (index in 0 until childCount) { action(index, getChildAt(index)) }Z }D val userLayout: ViewGroup = findViewById(R.id.users) userLayout.forEachIndexed {Gindex, view -> // Do something with index and view… }A

Slide 9

Slide 9 text

fun ViewGroup.forEachIndexed(action: (Int, View) -> Unit) { for (index in 0 until childCount) { action(index, getChildAt(index)) }Z }D val userLayout: ViewGroup = findViewById(R.id.users) userLayout.forEachIndexed {Gindex, view -> // Do something with index and view… }A

Slide 10

Slide 10 text

inline fun ViewGroup.forEachIndexed(action: (Int, View) -> Unit) { for (index in 0 until childCount) { action(index, getChildAt(index)) }Z }D val userLayout: ViewGroup = findViewById(R.id.users) userLayout.forEachIndexed {Gindex, view -> // Do something with index and view… }A

Slide 11

Slide 11 text

inline fun ViewGroup.forEachIndexed(action: (Int, View) -> Unit) { for (index in 0 until childCount) { action(index, getChildAt(index)) }Z }D val userLayout: ViewGroup = findViewById(R.id.users) userLayout.forEachIndexed {Gindex, view -> // Do something with index and view… }A

Slide 12

Slide 12 text

// In an Activity, on API 23+… val notifications = getSystemService(NotificationManager::class.java)

Slide 13

Slide 13 text

// In an Activity, on API 23+… val notifications = getSystemService(NotificationManager::class.java) // or all API levels… val notifications = ContextCompat.getSystemService(this, NotificationManager::class.java)

Slide 14

Slide 14 text

// In an Activity, on API 23+… val notifications = getSystemService(NotificationManager::class.java) // or all API levels… val notifications = ContextCompat.getSystemService(this, NotificationManager::class.java) inline fun Context.systemService() = ContextCompat.getSystemService(this, T::class.java)

Slide 15

Slide 15 text

inline fun Context.systemService() = ContextCompat.getSystemService(this, T::class.java) // In an Activity, on API 23+… val notifications = getSystemService(NotificationManager::class.java) // or all API levels… val notifications = ContextCompat.getSystemService(this, NotificationManager::class.java)

Slide 16

Slide 16 text

inline fun Context.systemService() = ContextCompat.getSystemService(this, T::class.java) // In an Activity, on API 23+… val notifications = getSystemService(NotificationManager::class.java) // or all API levels… val notifications = ContextCompat.getSystemService(this, NotificationManager::class.java)

Slide 17

Slide 17 text

inline fun Context.systemService() = ContextCompat.getSystemService(this, T::class.java) // In an Activity, on API 23+… val notifications = getSystemService(NotificationManager::class.java)H // or all API levels… val notifications = ContextCompat.getSystemService(this, NotificationManager::class.java) s

Slide 18

Slide 18 text

inline fun Context.systemService() = ContextCompat.getSystemService(this, T::class.java) // In an Activity… val notifications = systemService()H S

Slide 19

Slide 19 text

inline fun Context.systemService() = ContextCompat.getSystemService(this, T::class.java) // In an Activity… val notifications = systemService()H

Slide 20

Slide 20 text

avatarView.setPadding( 10, avatarView.paddingTop, 10, avatarView.paddingBottom)

Slide 21

Slide 21 text

inline fun View.updatePadding( left: Int = paddingLeft, top: Int = paddingTop, right: Int = paddingRight, bottom: Int = paddingBottom ) { setPadding(left, top, right, bottom) } avatarView.setPadding( 10, avatarView.paddingTop, 10, avatarView.paddingBottom)

Slide 22

Slide 22 text

inline fun View.updatePadding( left: Int = paddingLeft, top: Int = paddingTop, right: Int = paddingRight, bottom: Int = paddingBottom ) { setPadding(left, top, right, bottom) } avatarView.setPadding( 10, avatarView.paddingTop, 10, avatarView.paddingBottom)

Slide 23

Slide 23 text

inline fun View.updatePadding( left: Int = paddingLeft, top: Int = paddingTop, right: Int = paddingRight, bottom: Int = paddingBottom ) { setPadding(left, top, right, bottom) }A avatarView.setPadding( 10, avatarView.paddingTop, 10, avatarView.paddingBottom)R update

Slide 24

Slide 24 text

inline fun View.updatePadding( left: Int = paddingLeft, top: Int = paddingTop, right: Int = paddingRight, bottom: Int = paddingBottom ) { setPadding(left, top, right, bottom) }A avatarView.updatePadding(10, 10)R

Slide 25

Slide 25 text

inline fun View.updatePadding( left: Int = paddingLeft, top: Int = paddingTop, right: Int = paddingRight, bottom: Int = paddingBottom ) { setPadding(left, top, right, bottom) }A avatarView.updatePadding(10, 10)R

Slide 26

Slide 26 text

inline fun View.updatePadding( left: Int = paddingLeft, top: Int = paddingTop, right: Int = paddingRight, bottom: Int = paddingBottom ) { setPadding(left, top, right, bottom) }A avatarView.updatePadding(left = 10, right = 10)R

Slide 27

Slide 27 text

inline fun View.updatePadding( left: Int = paddingLeft, top: Int = paddingTop, right: Int = paddingRight, bottom: Int = paddingBottom ) { setPadding(left, top, right, bottom) }A avatarView.updatePadding(left = 10, right = 10)R

Slide 28

Slide 28 text

val rect = avatarView.clipBounds val left = rect.left val top = rect.top val right = rect.right val bottom = rect.bottom // Use left, top, right, bottom…

Slide 29

Slide 29 text

val rect = avatarView.clipBounds val left = rect.left val top = rect.top val right = rect.right val bottom = rect.bottom // Use left, top, right, bottom… inline operator fun Rect.component1() = left inline operator fun Rect.component2() = top inline operator fun Rect.component3() = right inline operator fun Rect.component4() = bottom

Slide 30

Slide 30 text

inline operator fun Rect.component1() = left inline operator fun Rect.component2() = top inline operator fun Rect.component3() = right inline operator fun Rect.component4() = bottom val rect = avatarView.clipBounds val left = rect.left val top = rect.top val right = rect.right val bottom = rect.bottom // Use left, top, right, bottom…

Slide 31

Slide 31 text

inline operator fun Rect.component1() = left inline operator fun Rect.component2() = top inline operator fun Rect.component3() = right inline operator fun Rect.component4() = bottom val rect = avatarView.clipBounds val left = rect.left val top = rect.top val right = rect.right val bottom = rect.bottom // Use left, top, right, bottom…

Slide 32

Slide 32 text

inline operator fun Rect.component1() = left inline operator fun Rect.component2() = top inline operator fun Rect.component3() = right inline operator fun Rect.component4() = bottom val rect = avatarView.clipBounds val left = rect.left valTtop = rect.top valRright = rect.right valBbottom = rect.bottom // Use left, top, right, bottom…

Slide 33

Slide 33 text

inline operator fun Rect.component1() = left inline operator fun Rect.component2() = top inline operator fun Rect.component3() = right inline operator fun Rect.component4() = bottom val (left,Ttop,Rright,Bbottom) = avatarView.clipBounds // Use left, top, right, bottom…

Slide 34

Slide 34 text

inline operator fun Rect.component1() = left inline operator fun Rect.component2() = top inline operator fun Rect.component3() = right inline operator fun Rect.component4() = bottom val (left,Ttop,Rright) = avatarView.clipBounds // Use left, top, right…

Slide 35

Slide 35 text

inline operator fun Rect.component1() = left inline operator fun Rect.component2() = top inline operator fun Rect.component3() = right inline operator fun Rect.component4() = bottom val (left,T_,Rright) = avatarView.clipBounds // Use left, right…

Slide 36

Slide 36 text

inline operator fun Rect.component1() = left inline operator fun Rect.component2() = top inline operator fun Rect.component3() = right inline operator fun Rect.component4() = bottom val (left,T_,Rright) = avatarView.clipBounds // Use left, right…

Slide 37

Slide 37 text

var onlyDigits = true for (c in phoneNumber) {A if (!c.isDigit()) { onlyDigits = false break }G }B

Slide 38

Slide 38 text

r true for (c in ) if (!c. ) { onlyDigits = false break }G val onlyDigits = phoneNumber.all {Ait.isDigit() }B

Slide 39

Slide 39 text

.all {Ait.isDigit() }B val onlyDigits = TextUtils.isDigitsOnly(phoneNumber)

Slide 40

Slide 40 text

inline fun CharSequence.isDigitsOnly() = TextUtils.isDigitsOnly(this)Z val onlyDigits = TextUtils.isDigitsOnly(phoneNumber)L

Slide 41

Slide 41 text

inline fun CharSequence.isDigitsOnly() = TextUtils.isDigitsOnly(this)Z val onlyDigits = phoneNumber.isDigitsOnly()L

Slide 42

Slide 42 text

inline fun CharSequence.isDigitsOnly() = TextUtils.isDigitsOnly(this)Z val onlyDigits = phoneNumber.

Slide 43

Slide 43 text

inline fun CharSequence.isDigitsOnly() = TextUtils.isDigitsOnly(this)Z val onlyDigits = phoneNumber.

Slide 44

Slide 44 text

inline fun CharSequence.isDigitsOnly() = TextUtils.isDigitsOnly(this)Z val onlyDigits = phoneNumber.is

Slide 45

Slide 45 text

inline fun CharSequence.isDigitsOnly() = TextUtils.isDigitsOnly(this)Z val onlyDigits = phoneNumber.is

Slide 46

Slide 46 text

inline fun CharSequence.isDigitsOnly() = TextUtils.isDigitsOnly(this)Z val onlyDigits = phoneNumber.isDigitsOnly()L

Slide 47

Slide 47 text

inline fun ViewGroup.forEachIndexed(action: (Int, View) -> Unit) { for (index in 0 until childCount) { action(index, getChildAt(index)) }Z } inline fun Context.systemService() = ContextCompat.getSystemService(this, T::class.java) inline fun View.updatePadding( left: Int = paddingLeft, top: Int = paddingTop, right: Int = paddingRight, bottom: Int = paddingBottom ) { setPadding(left, top, right, bottom) } inline operator fun Rect.component1() = left inline operator fun Rect.component2() = top inline operator fun Rect.component3() = right inline operator fun Rect.component4() = bottom inline fun CharSequence.isDigitsOnly() = TextUtils.isDigitsOnly(this)Z

Slide 48

Slide 48 text

No content

Slide 49

Slide 49 text

core-ktx Android KTX

Slide 50

Slide 50 text

Android KTX core-ktx Android framework

Slide 51

Slide 51 text

Android KTX Android framework support-compat core-ktx

Slide 52

Slide 52 text

Android KTX Android framework core core-ktx

Slide 53

Slide 53 text

Android KTX Android framework core core-ktx fragment-ktx fragment palette-ktx palette collection-ktx collection lifecycle-reactivestreams-ktx lifecycle-reactivestreams sqlite-ktx sqlite navigation-*-ktx navigation-* work-runtime-ktx work-runtime

Slide 54

Slide 54 text

Android KTX Android framework core core-ktx fragment-ktx fragment palette-ktx palette collection-ktx collection lifecycle-reactivestreams-ktx lifecycle-reactivestreams sqlite-ktx sqlite navigation-*-ktx navigation-* work-runtime-ktx work-runtime

Slide 55

Slide 55 text

@RequiresApi(26) operator fun Color.plus(c: Color): Color { val s = if (colorSpace != c.colorSpace) c.convert(colorSpace) else c val src = s.components val dst = components var sa = s.alpha() // Destination alpha pre-composited var da = alpha() * (1.0f - sa) // Index of the alpha component val ai = componentCount - 1 // Final alpha: src_alpha + dst_alpha * (1 - src_alpha) dst[ai] = sa + da // Divide by final alpha to return non pre-multiplied color if (dst[ai] > 0) { sa /= dst[ai] da /= dst[ai] } // Composite non-alpha components for (i in 0 until ai) { dst[i] = src[i] * sa + dst[i] * da } return Color.valueOf(dst, colorSpace) }

Slide 56

Slide 56 text

@RequiresApi(26) operator fun Color.plus(c: Color): Color { val s = if (colorSpace != c.colorSpace) c.convert(colorSpace) else c val src = s.components val dst = components var sa = s.alpha() // Destination alpha pre-composited var da = alpha() * (1.0f - sa) // Index of the alpha component val ai = componentCount - 1 // Final alpha: src_alpha + dst_alpha * (1 - src_alpha) dst[ai] = sa + da // Divide by final alpha to return non pre-multiplied color if (dst[ai] > 0) { sa /= dst[ai] da /= dst[ai] } // Composite non-alpha components for (i in 0 until ai) { dst[i] = src[i] * sa + dst[i] * da } return Color.valueOf(dst, colorSpace) }

Slide 57

Slide 57 text

@RequiresApi(26) operator fun Color.plus(c: Color): Color { val s = if (colorSpace != c.colorSpace) c.convert(colorSpace) else c val src = s.components val dst = components var sa = s.alpha() // Destination alpha pre-composited var da = alpha() * (1.0f - sa) // Index of the alpha component val ai = componentCount - 1 // Final alpha: src_alpha + dst_alpha * (1 - src_alpha) dst[ai] = sa + da // Divide by final alpha to return non pre-multiplied color if (dst[ai] > 0) { sa /= dst[ai] da /= dst[ai] } // Composite non-alpha components for (i in 0 until ai) { dst[i] = src[i] * sa + dst[i] * da } return Color.valueOf(dst, colorSpace) }

Slide 58

Slide 58 text

public final class ColorUtils { }Z

Slide 59

Slide 59 text

public final class ColorUtils { @ColorInt public static int compositeColors( @ColorInt int foreground, @ColorInt int background) { // … }X }Z

Slide 60

Slide 60 text

public final class ColorUtils { @ColorInt public static int compositeColors( @ColorInt int foreground, @ColorInt int background) { // … }X @RequiresApi(26) public static Color compositeColors( Color foreground, Color background) { // … }Y }Z

Slide 61

Slide 61 text

@RequiresApi(26) operator fun Color.plus(c: Color): Color { val s = if (colorSpace != c.colorSpace) c.convert(colorSpace) else c val src = s.components val dst = components var sa = s.alpha() // Destination alpha pre-composited var da = alpha() * (1.0f - sa) // Index of the alpha component val ai = componentCount - 1 // Final alpha: src_alpha + dst_alpha * (1 - src_alpha) dst[ai] = sa + da // Divide by final alpha to return non pre-multiplied color if (dst[ai] > 0) { sa /= dst[ai] da /= dst[ai] } // Composite non-alpha components for (i in 0 until ai) { dst[i] = src[i] * sa + dst[i] * da } return Color.valueOf(dst, colorSpace) }

Slide 62

Slide 62 text

@RequiresApi(26) inline operator fun Color.plus(c: Color): Color = ColorUtils.compositeColors(c, this)

Slide 63

Slide 63 text

inline fun ViewGroup.forEachIndexed(action: (Int, View) -> Unit) { for (index in 0 until childCount) { action(index, getChildAt(index)) }Z } inline fun Context.systemService() = ContextCompat.getSystemService(this, T::class.java) inline fun View.updatePadding( left: Int = paddingLeft, top: Int = paddingTop, right: Int = paddingRight, bottom: Int = paddingBottom ) { setPadding(left, top, right, bottom) } inline operator fun Rect.component1() = left inline operator fun Rect.component2() = top inline operator fun Rect.component3() = right inline operator fun Rect.component4() = bottom inline fun CharSequence.isDigitsOnly() = TextUtils.isDigitsOnly(this)Z

Slide 64

Slide 64 text

inline fun ViewGroup.forEachIndexed(action: (Int, View) -> Unit) { for (index in 0 until childCount) { action(index, getChildAt(index)) }Z } inline fun Context.systemService() = ContextCompat.getSystemService(this, T::class.java) inline fun View.updatePadding( left: Int = paddingLeft, top: Int = paddingTop, right: Int = paddingRight, bottom: Int = paddingBottom ) { setPadding(left, top, right, bottom) } inline operator fun Rect.component1() = left inline operator fun Rect.component2() = top inline operator fun Rect.component3() = right inline operator fun Rect.component4() = bottom inline fun CharSequence.isDigitsOnly() = TextUtils.isDigitsOnly(this)Z

Slide 65

Slide 65 text

KTX Principles

Slide 66

Slide 66 text

KTX Principles Adapt existing functionality and redirect features upstream

Slide 67

Slide 67 text

inline fun ViewGroup.forEachIndexed(action: (Int, View) -> Unit) { for (index in 0 until childCount) { action(index, getChildAt(index)) }Z } inline fun Context.systemService() = ContextCompat.getSystemService(this, T::class.java) inline fun View.updatePadding( left: Int = paddingLeft, top: Int = paddingTop, right: Int = paddingRight, bottom: Int = paddingBottom ) { setPadding(left, top, right, bottom) } inline operator fun Rect.component1() = left inline operator fun Rect.component2() = top inline operator fun Rect.component3() = right inline operator fun Rect.component4() = bottom inline fun CharSequence.isDigitsOnly() = TextUtils.isDigitsOnly(this)Z

Slide 68

Slide 68 text

inline fun ViewGroup.forEachIndexed(action: (Int, View) -> Unit) { for (index in 0 until childCount) { action(index, getChildAt(index)) }Z } inline fun Context.systemService() = ContextCompat.getSystemService(this, T::class.java) inline fun View.updatePadding( left: Int = paddingLeft, top: Int = paddingTop, right: Int = paddingRight, bottom: Int = paddingBottom ) { setPadding(left, top, right, bottom) } inline operator fun Rect.component1() = left inline operator fun Rect.component2() = top inline operator fun Rect.component3() = right inline operator fun Rect.component4() = bottom inline fun CharSequence.isDigitsOnly() = TextUtils.isDigitsOnly(this)Z

Slide 69

Slide 69 text

inline fun ViewGroup.forEachIndexed(action: (Int, View) -> Unit) { for (index in 0 until childCount) { action(index, getChildAt(index)) }Z } inline fun Context.systemService() = ContextCompat.getSystemService(this, T::class.java) inline fun View.updatePadding( left: Int = paddingLeft, top: Int = paddingTop, right: Int = paddingRight, bottom: Int = paddingBottom ) { setPadding(left, top, right, bottom) } inline operator fun Rect.component1() = left inline operator fun Rect.component2() = top inline operator fun Rect.component3() = right inline operator fun Rect.component4() = bottom inline fun CharSequence.isDigitsOnly() = TextUtils.isDigitsOnly(this)Z

Slide 70

Slide 70 text

operator fun ViewGroup.iterator() = object : MutableIterator { private var index = 0 override fun hasNext() = index < childCount override fun next() = getChildAt(index++) ?: throw IndexOutOfBoundsException() override fun remove() = removeViewAt(--index) }

Slide 71

Slide 71 text

operator fun ViewGroup.iterator() = object : MutableIterator { private var index = 0 override fun hasNext() = index < childCount override fun next() = getChildAt(index++) ?: throw IndexOutOfBoundsException() override fun remove() = removeViewAt(--index) } for (view in userLayout) { // Do something with view… }

Slide 72

Slide 72 text

operator fun ViewGroup.iterator() = object : MutableIterator { private var index = 0 override fun hasNext() = index < childCount override fun next() = getChildAt(index++) ?: throw IndexOutOfBoundsException() override fun remove() = removeViewAt(--index) } for (view in userLayout) { // Do something with view… }

Slide 73

Slide 73 text

operator fun ViewGroup.iterator() = object : MutableIterator { private var index = 0 override fun hasNext() = index < childCount override fun next() = getChildAt(index++) ?: throw IndexOutOfBoundsException() override fun remove() = removeViewAt(--index) } for (view in userLayout) { // Do something with view… }

Slide 74

Slide 74 text

KTX Principles Adapt existing functionality and redirect features upstream

Slide 75

Slide 75 text

KTX Principles Adapt existing functionality and redirect features upstream Default to inline unless code size or allocation is prohibitive

Slide 76

Slide 76 text

inline fun ViewGroup.forEachIndexed(action: (Int, View) -> Unit) { for (index in 0 until childCount) { action(index, getChildAt(index)) }Z }Z val userLayout: ViewGroup = findViewById(R.id.users) userLayout.forEachIndexed { index, view -> // Do something with index and view… }A

Slide 77

Slide 77 text

inline fun Context.systemService() = ContextCompat.getSystemService(this, T::class.java) // In an Activity… val notifications = systemService()H

Slide 78

Slide 78 text

inline fun View.updatePadding( left: Int = paddingLeft, top: Int = paddingTop, right: Int = paddingRight, bottom: Int = paddingBottom ) { setPadding(left, top, right, bottom) }A avatarView.updatePadding(left = 10, right = 10)R

Slide 79

Slide 79 text

inline operator fun Rect.component1() = left inline operator fun Rect.component2() = top inline operator fun Rect.component3() = right inline operator fun Rect.component4() = bottom val (left,T_,Rright) = avatarView.clipBounds // Use left, right…

Slide 80

Slide 80 text

inline fun CharSequence.isDigitsOnly() = TextUtils.isDigitsOnly(this)Z val onlyDigits = phoneNumber.isDigitsOnly()L

Slide 81

Slide 81 text

operator fun ViewGroup.iterator() = object : MutableIterator { private var index = 0 override fun hasNext() = index < childCount override fun next() = getChildAt(index++) ?: throw IndexOutOfBoundsException() override fun remove() = removeViewAt(--index) } for (view in userLayout) { // Do something with view… }

Slide 82

Slide 82 text

KTX Principles Adapt existing functionality and redirect features upstream Default to inline unless code size or allocation is prohibitive

Slide 83

Slide 83 text

KTX Principles Adapt existing functionality and redirect features upstream Default to inline unless code size or allocation is prohibitive Leverage features unique to Kotlin

Slide 84

Slide 84 text

view.setOnClickListener { // React to click… }Z

Slide 85

Slide 85 text

fun View.click(listener: (View) -> Unit) { setOnClickListener(listener) }Y view.setOnClickListener {P // React to click… }Z

Slide 86

Slide 86 text

fun View.click(listener: (View) -> Unit) { setOnClickListener(listener) }Y view.setOnClickListener {P // React to click… }Z c

Slide 87

Slide 87 text

fun View.click(listener: (View) -> Unit) { setOnClickListener(listener) }Y view.click {P // React to click… }Z C

Slide 88

Slide 88 text

view.click {P // React to click… }Z view.setOnClickListener { // React to click… }

Slide 89

Slide 89 text

KTX Principles Adapt existing functionality and redirect features upstream Default to inline unless code size or allocation is prohibitive Leverage features unique to Kotlin

Slide 90

Slide 90 text

KTX Principles Adapt existing functionality and redirect features upstream Default to inline unless code size or allocation is prohibitive Leverage features unique to Kotlin Code golf APIs to be as short as possible

Slide 91

Slide 91 text

if (Build.VERSION.SDK_INT >= 19) { TransitionManager.beginDelayedTransition(viewGroup) }Z

Slide 92

Slide 92 text

inline fun onApi(level: Int, body: () -> Unit) { if (Build.VERSION.SDK_INT >= level) { body() }Z } if (Build.VERSION.SDK_INT > 19) { TransitionManager.beginDelayedTransition(viewGroup) }Z

Slide 93

Slide 93 text

inline fun onApi(level: Int, body: () -> Unit) { if (Build.VERSION.SDK_INT >= level) { body() }Z }Q if (Build.VERSION.SDK_INT > 19) { TransitionManager.beginDelayedTransition(viewGroup) }Z onApi

Slide 94

Slide 94 text

inline fun onApi(level: Int, body: () -> Unit) { if (Build.VERSION.SDK_INT >= level) { body() }Z }Q onApi(19) { TransitionManager.beginDelayedTransition(viewGroup) }Z

Slide 95

Slide 95 text

onApi(19) { TransitionManager.beginDelayedTransition(viewGroup) }Z

Slide 96

Slide 96 text

onApi(19) { TransitionManager.beginDelayedTransition(viewGroup) }Z if (Build.VERSION.SDK_INT >= 19) { TransitionManager.beginDelayedTransition(viewGroup) }Z

Slide 97

Slide 97 text

if (SDK_INT >= 19) { TransitionManager.beginDelayedTransition(viewGroup) }Z onApi(19) { TransitionManager.beginDelayedTransition(viewGroup) }Z

Slide 98

Slide 98 text

if (SDK_INT >= 19) { TransitionManager.beginDelayedTransition(viewGroup) }Z onApi(19) { TransitionManager.beginDelayedTransition(viewGroup) }Z

Slide 99

Slide 99 text

if (SDK_INT >= 19) { TransitionManager.beginDelayedTransition(viewGroup) }Zelse { // Something… } onApi(19) { TransitionManager.beginDelayedTransition(viewGroup) }Z

Slide 100

Slide 100 text

if (SDK_INT >= 19) { TransitionManager.beginDelayedTransition(viewGroup) }Zelse { // Something… }L onApi(19)F{A TransitionManager.beginDelayedTransition(viewGroup) },

Slide 101

Slide 101 text

if (SDK_INT >= 19) { TransitionManager.beginDelayedTransition(viewGroup) }Zelse { // Something… }L onApi(19, {A TransitionManager.beginDelayedTransition(viewGroup) }, {T // Something… })F

Slide 102

Slide 102 text

if (SDK_INT >= 28) { // Fancy new thing… } else if (SDK_INT >= 19) { TransitionManager.beginDelayedTransition(viewGroup) }Zelse { // Something… }L onApi(19, {A TransitionManager.beginDelayedTransition(viewGroup) },Z{T // Something… })F

Slide 103

Slide 103 text

if (SDK_INT >= 28) { // Fancy new thing… } else if (SDK_INT >= 19) { TransitionManager.beginDelayedTransition(viewGroup) }Zelse { // Something… }L onApi(19, {A TransitionManager.beginDelayedTransition(viewGroup) },Z{T // Something… })F

Slide 104

Slide 104 text

KTX Principles Adapt existing functionality and redirect features upstream Default to inline unless code size or allocation is prohibitive Leverage features unique to Kotlin Code golf APIs to be as short as possible

Slide 105

Slide 105 text

KTX Principles Adapt existing functionality and redirect features upstream Default to inline unless code size or allocation is prohibitive Leverage features unique to Kotlin Code golf APIs to be as short as possible Optimize for a single and/or specific use case

Slide 106

Slide 106 text

Android KTX Android framework core core-ktx fragment-ktx fragment palette-ktx palette collection-ktx collection lifecycle-reactivestreams-ktx lifecycle-reactivestreams sqlite-ktx sqlite navigation-*-ktx navigation-* work-runtime-ktx work-runtime

Slide 107

Slide 107 text

Android KTX Android framework core core-ktx fragment-ktx fragment palette-ktx palette collection-ktx collection lifecycle-reactivestreams-ktx lifecycle-reactivestreams sqlite-ktx sqlite navigation-*-ktx navigation-* work-runtime-ktx work-runtime

Slide 108

Slide 108 text

supportFragmentManager.beginTransaction() .replace(android.R.id.content, userFragment) .commit()

Slide 109

Slide 109 text

inline fun FragmentManager.transaction( body: FragmentTransaction.() -> Unit ) { val transaction = beginTransaction() transaction.body() transaction.commit() } supportFragmentManager.beginTransaction() .replace(android.R.id.content, userFragment) .commit()

Slide 110

Slide 110 text

inline fun FragmentManager.transaction( body: FragmentTransaction.() -> Unit ) { val transaction = beginTransaction() transaction.body() transaction.commit() }A supportFragmentManager.beginTransaction() .replace(android.R.id.content, userFragment) t .commit()

Slide 111

Slide 111 text

inline fun FragmentManager.transaction( body: FragmentTransaction.() -> Unit ) { val transaction = beginTransaction() transaction.body() transaction.commit() }A supportFragmentManager.transaction { replace(android.R.id.content, userFragment) }Z T

Slide 112

Slide 112 text

inline fun FragmentManager.transaction( allowStateLoss: Boolean = false body: FragmentTransaction.() -> Unit ) { val transaction = beginTransaction() transaction.body() if (allowStateLoss) transaction.commitAllowingStateLoss() else transaction.commit() }A supportFragmentManager.transaction { replace(android.R.id.content, userFragment) }Z

Slide 113

Slide 113 text

inline fun FragmentManager.transaction( allowStateLoss: Boolean = false body: FragmentTransaction.() -> Unit ) { val transaction = beginTransaction() transaction.body() if (allowStateLoss) transaction.commitAllowingStateLoss() else transaction.commit() }A supportFragmentManager.transaction {G replace(android.R.id.content, userFragment) }Z

Slide 114

Slide 114 text

inline fun FragmentManager.transaction( allowStateLoss: Boolean = false, body: FragmentTransaction.() -> Unit ) { val transaction = beginTransaction() transaction.body() if (allowStateLoss) transaction.commitAllowingStateLoss() else transaction.commit() }A supportFragmentManager.transaction(allowStateLoss = true) {G replace(android.R.id.content, userFragment) }Z

Slide 115

Slide 115 text

L7 ALOAD 3 INVOKEVIRTUAL androidx/fragment/app/FragmentManager beginTransaction() Landroidx/fragment/app/FragmentTransaction; ASTORE 7 L8 ALOAD 7 LDC 16908290 ALOAD 2 INVOKEVIRTUAL androidx/fragment/app/FragmentTransaction replace( I Landroidx/fragment/app/Fragment; ) Landroidx/fragment/app/FragmentTransaction; POP L9 ALOAD 7 INVOKEVIRTUAL androidx/fragment/app/FragmentTransaction commitAllowingStateLoss() I POP

Slide 116

Slide 116 text

inline fun FragmentManager.transaction( allowStateLoss: Boolean = false, body: FragmentTransaction.() -> Unit ) { val transaction = beginTransaction() transaction.body() if (allowStateLoss) transaction.commitAllowingStateLoss() else transaction.commit() }A supportFragmentManager.transaction(allowStateLoss = true) {G replace(android.R.id.content, userFragment) }Z

Slide 117

Slide 117 text

inline fun FragmentManager.transaction( now: Boolean = false, allowStateLoss: Boolean = false, body: FragmentTransaction.() -> Unit ) { val transaction = beginTransaction() transaction.body() if (now) { if (allowStateLoss) transaction.commitNowAllowingStateLoss() else transaction.commitNow() } else { if (allowStateLoss) transaction.commitAllowingStateLoss() else transaction.commit() } }A

Slide 118

Slide 118 text

No content

Slide 119

Slide 119 text

No content

Slide 120

Slide 120 text

No content

Slide 121

Slide 121 text

No content

Slide 122

Slide 122 text

Building Kotlin-friendly libraries

Slide 123

Slide 123 text

Building Kotlin-friendly libraries • Port public API or entire library to Kotlin

Slide 124

Slide 124 text

Building Kotlin-friendly libraries • Port public API or entire library to Kotlin • Ship sibling artifact with Kotlin extensions

Slide 125

Slide 125 text

Building Kotlin-friendly libraries • Port public API or entire library to Kotlin • Ship sibling artifact with Kotlin extensions • ???

Slide 126

Slide 126 text

inline fun CharSequence.isDigitsOnly() = TextUtils.isDigitsOnly(this) val onlyDigits = phoneNumber.isDigitsOnly()

Slide 127

Slide 127 text

class TextUtils { static boolean isDigitsOnly(CharSequence str) { int len = str.length(); // … }Y }Z inline fun CharSequence.isDigitsOnly() = TextUtils.isDigitsOnly(this) val onlyDigits = phoneNumber.isDigitsOnly()

Slide 128

Slide 128 text

class TextUtils { static boolean isDigitsOnly(@NonNull CharSequence str) { int len = str.length(); // … }Y }Z inline fun CharSequence.isDigitsOnly() = TextUtils.isDigitsOnly(this) val onlyDigits = phoneNumber.isDigitsOnly()

Slide 129

Slide 129 text

class TextUtils { static boolean isDigitsOnly(@NonNull CharSequence str) { int len = str.length(); // … }Y }Z inline fun CharSequence.isDigitsOnly() = TextUtils.isDigitsOnly(this) val onlyDigits = phoneNumber.isDigitsOnly()

Slide 130

Slide 130 text

class TextUtils { @ExtensionFunction static boolean isDigitsOnly(@NonNull CharSequence str) { int len = str.length(); // … }Y }Z inline fun CharSequence.isDigitsOnly() = TextUtils.isDigitsOnly(this) val onlyDigits = phoneNumber.isDigitsOnly()

Slide 131

Slide 131 text

class TextUtils { @ExtensionFunction static boolean isDigitsOnly(@NonNull CharSequence str) { int len = str.length(); // … }Y }Z inline fun CharSequence.isDigitsOnly() = TextUtils.isDigitsOnly(this) val onlyDigits = phoneNumber.isDigitsOnly()

Slide 132

Slide 132 text

class TextUtils { @ExtensionFunction static boolean isDigitsOnly(@NonNull CharSequence str) { int len = str.length(); // … }Y }Z val onlyDigits = phoneNumber.isDigitsOnly()

Slide 133

Slide 133 text

class TextUtils { @ExtensionFunction static boolean isDigitsOnly(@NonNull CharSequence str) { int len = str.length(); // … }Y }Z val onlyDigits = phoneNumber.isDigitsOnly()

Slide 134

Slide 134 text

class TextUtils { @ExtensionFunction static boolean isDigitsOnly(@NonNull CharSequence str) { int len = str.length(); // … }Y }Z val onlyDigits = phoneNumber.isDigitsOnly() // in the bytecode we get val onlyDigits = TextUtils.isDigitsOnly(phoneNumber)

Slide 135

Slide 135 text

inline fun View.updatePadding( left: Int = paddingLeft, top: Int = paddingTop, right: Int = paddingRight, bottom: Int = paddingBottom ) { setPadding(left, top, right, bottom) }A avatarView.updatePadding(left = 10, right = 10)R

Slide 136

Slide 136 text

inline fun View.updatePadding( left: Int = paddingLeft, top: Int = paddingTop, right: Int = paddingRight, bottom: Int = paddingBottom ) { setPadding(left, top, right, bottom) }A avatarView.updatePadding(left = 10, right = 10)R

Slide 137

Slide 137 text

class View { void setPadding(int left, int top, int right, int bottom) { /* … */ }B }A inline fun View.updatePadding( left: Int = paddingLeft, top: Int = paddingTop, right: Int = paddingRight, bottom: Int = paddingBottom ) { setPadding(left, top, right, bottom) }A avatarView.updatePadding(left = 10, right = 10)R

Slide 138

Slide 138 text

class View { void setPadding( @KtName("left")Aint left, @KtName("top")Aint top, @KtName("right")Aint right, @KtName("bottom")Aint bottom ) { /* … */ }B }A inline fun View.updatePadding( left: Int = paddingLeft, top: Int = paddingTop, right: Int = paddingRight, bottom: Int = paddingBottom ) { setPadding(left, top, right, bottom)

Slide 139

Slide 139 text

class View { void setPadding( @KtName("left")A@DefaultValue("paddingLeft") int left, @KtName("top")A@DefaultValue("paddingTop") int top, @KtName("right")A@DefaultValue("paddingRight") int right, @KtName("bottom")A@DefaultValue("paddingBottom") int bottom ) { /* … */ }B }A inline fun View.updatePadding( left: Int = paddingLeft, top: Int = paddingTop, right: Int = paddingRight, bottom: Int = paddingBottom ) { setPadding(left, top, right, bottom)

Slide 140

Slide 140 text

class View { void setPadding( @KtName("left") @DefaultValue("paddingLeft") int left, @KtName("top") @DefaultValue("paddingTop") int top, @KtName("right") @DefaultValue("paddingRight") int right, @KtName("bottom") @DefaultValue("paddingBottom") int bottom ) { /* … */ }B }A avatarView.updatePadding(left = 10, right = 10)R

Slide 141

Slide 141 text

class View { void setPadding( @KtName("left") @DefaultValue("paddingLeft") int left, @KtName("top") @DefaultValue("paddingTop") int top, @KtName("right") @DefaultValue("paddingRight") int right, @KtName("bottom") @DefaultValue("paddingBottom") int bottom ) { /* … */ }B }A avatarView.setPadding(left = 10, right = 10)R u p d a t e

Slide 142

Slide 142 text

class View { void setPadding( @KtName("left") @DefaultValue("paddingLeft") int left, @KtName("top") @DefaultValue("paddingTop") int top, @KtName("right") @DefaultValue("paddingRight") int right, @KtName("bottom") @DefaultValue("paddingBottom") int bottom ) { /* … */ }B }A avatarView.setPadding(left = 10, right = 10)R // in bytecode we get avatarView.setPadding( 10, avatarView.paddingTop, 10, avatarView.paddingBottom) u p d a t e

Slide 143

Slide 143 text

KEEP-110

Slide 144

Slide 144 text

KEEP-110 • @ExtensionFunction / @ExtensionProperty — Turn a static method with at least one argument into an extension function or an extension property.

Slide 145

Slide 145 text

KEEP-110 • @ExtensionFunction / @ExtensionProperty — Turn a static method with at least one argument into an extension function or an extension property. • 
 
 • @DefaultValue — Default parameter values.

Slide 146

Slide 146 text

KEEP-110 • @ExtensionFunction / @ExtensionProperty — Turn a static method with at least one argument into an extension function or an extension property. • 
 
 • @DefaultValue — Default parameter values. • 
 
 • @KtName — An alternate name for methods, fields, and parameters for use by Kotlin code.

Slide 147

Slide 147 text

Building Kotlin-friendly libraries • Port public API or entire library to Kotlin • Ship sibling artifact with Kotlin extensions • ???

Slide 148

Slide 148 text

Building Kotlin-friendly libraries • Port public API or entire library to Kotlin • Ship sibling artifact with Kotlin extensions • KEEP-110 annotations

Slide 149

Slide 149 text

Android KTX Android framework core core-ktx fragment-ktx fragment palette-ktx palette collection-ktx collection lifecycle-reactivestreams-ktx lifecycle-reactivestreams sqlite-ktx sqlite navigation-*-ktx navigation-* work-runtime-ktx work-runtime

Slide 150

Slide 150 text

No content

Slide 151

Slide 151 text

No content

Slide 152

Slide 152 text

No content

Slide 153

Slide 153 text

No content

Slide 154

Slide 154 text

https://github.com/Kotlin/KEEP/issues/110

Slide 155

Slide 155 text

Jake Wharton Thank you @JakeWharton