Android Extensions: Support Dialog classes (KT-16957)

This commit is contained in:
Yan Zhulanow
2017-03-21 18:46:38 +03:00
parent f1e303e18d
commit cba523958e
23 changed files with 101 additions and 11 deletions
@@ -0,0 +1,7 @@
package android.app
import android.view.View
open class Dialog {
open fun findViewById(id: Int): View? = null
}