blob: 7bcff1c6c5fb2ba7c3ccfb80709f3e5b45d684d5 [file] [log] [blame]
package android.app
public open class Activity {
public open fun findViewById(@Suppress("UNUSED_PARAMETER") id: Int): android.view.View = null!!
}
public open class Fragment {
public open fun getView(): android.view.View = null!!
}
open class Dialog {
open fun findViewById(id: Int): android.view.View? = null
}