Files
2016-10-28 15:30:22 +03:00

10 lines
188 B
Kotlin
Vendored

package com.myapp
import android.app.Activity
import android.view.View
class MyActivity: Activity() {
fun View.foo() {
val a = context.getString(R.string.resource_id)
}
}