Can you do this in android? I want to make sure t...
# android
k
Can you do this in android? I want to make sure that the function accepts an IntArray of StringRes ids.
Copy code
fun foo(@StringRes clickablePhraseIds: IntArray){}
d
I’ve done this with a list and it seemed to work ok.
k
Thanks