bodo
10/19/2016, 3:02 PMclass CustomView(ctx: Context) : View(ctx) {
init {
if (attrs != null) {
val a = context.obtainStyledAttributes(attrs, R.styleable.View)
val useTheme = a.getBoolean(R.styleable.View_kik_themeUseTheme, false)
// do something with the useTheme variable directly in init
// ...
a.recycle()
}
}
}