9 lines
253 B
Kotlin
9 lines
253 B
Kotlin
package net.mezimmah.wkt9.ui
|
|
|
|
import android.content.Context
|
|
import android.util.AttributeSet
|
|
import android.widget.RelativeLayout
|
|
|
|
class Suggestions(context: Context, attrs: AttributeSet): RelativeLayout(context, attrs) {
|
|
private val tag = "WKT9"
|
|
} |