ProAndroidDev

The latest posts from Android Professionals and Google Developer Experts.

Follow publication

Kotlin Scope Functions Made Simple

Federico Puy
ProAndroidDev
Published in
5 min readJan 28, 2020

Key Concept: Context Object

this

fun createCard () {
val card = Card("4421 9982 **** ****").apply {
cvv = "451" //equal to this.cvv = "451" or card.cvv = "451”
bank = "Huge Bank"
}
}
class MainActivity : AppCompatActivity() {  lateinit var myIntent: Intent
val data = Uri.parse("anyString")
fun foo(){
myIntent?.run {
data = this@MainActivity.data
startActivity(this)
}
}

Solution: use it instead of this

fun foo(){
myIntent?.let {
it
.data = data
startActivity(it)
}
}

let

var cardNumber: String? = "1233 1231"
fun printCard() {
cardNumber?.let {
// Everything executed inside this block will be null safe.
print("The length of the card number is ${it.length}")
}
}

apply

cardDrawer.visibility = View.VISIBLE
cardDrawer.setBehaviour(CardDrawerView.Behaviour.RESPONSIVE)
cardDrawer.show(config)
cardDrawer.setInternalPadding(0)
cardDrawer.setArrowEnabled(miniCard.showChevron)
cardDrawer.apply {
visibility = View.VISIBLE
setBehaviour(CardDrawerView.Behaviour.RESPONSIVE)
show(config)
setInternalPadding(0)
setArrowEnabled(miniCard.showChevron)
}

also

cardDrawer.apply {
visibility = View.VISIBLE
setBehaviour(CardDrawerView.Behaviour.RESPONSIVE)
show(config)
setInternalPadding(0)
setArrowEnabled(miniCard.showChevron)
}.also {
Log.d("TAG", "Card drawer initialized with $it.behaviour")
}

run

val message = StringBuilder()
val numberOfCharacters = message.run {
append("This is a transformation function.")
append("Any String")
length // number of characters takes the value of length
}
val isCardValid = run {
// Only visible inside the lambda
val cvv = getCvv()
val cardHolder = getCardholder()
validate(cvv, cardHolder)
}

with

val webview = WebView(this)
webview.settings.javaScriptEnabled = true
webview.loadUrl("https://www.mercadolibre.com")
val webview = WebView(this)
with (webview) {
settings.javaScriptEnabled = true
loadUrl("https://www.mercadolibre.com")
}

Bonus: Bytecode

class ScopeFunc {
val value : String? = "Any String"

fun processWithScopeFunction (){
value?.let {
print(value)
}
}
fun processWithoutScopeFunction (){
if (value != null) {
print(value)
}
}
}
public final class ScopeFunc {
@Nullable
private final String value = "Any String";
public final void processWithScopeFunction() {
if (this.value != null) {
boolean var2 = false;
boolean var3 = false;
int var5 = false;
String var6 = this.value;
boolean var7 = false;
System.out.print(var6);
}
}
public final void processWithoutScopeFunction() {
if (this.value != null) {
String var1 = this.value;
boolean var2 = false;
System.out.print(var1);
}
}
}

Published in ProAndroidDev

The latest posts from Android Professionals and Google Developer Experts.

Responses (4)

Write a response

Thank for sharing this nice information about scope function in Kotlin

--

Of all the articles about scope functions I’ve read, this one was the most helpful. The use cases and examples are spot on. Thank you.

--

Thanks for this article, it's so simple and very informative.
I have a concern about the difference between with and apply, as you said it seems similar to each other, but you didn't mention that difference.
Thanks again.

--