You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
477 B
17 lines
477 B
package org.mosad.seil0.projectlaogai |
|
|
|
import android.content.Context |
|
import android.support.v7.widget.CardView |
|
import android.util.AttributeSet |
|
import android.view.LayoutInflater |
|
import kotlinx.android.synthetic.main.lesson_cardview.view.* |
|
|
|
class LessonCardView @JvmOverloads constructor( |
|
context: Context, |
|
attrs: AttributeSet? = null |
|
) : CardView(context, attrs){ |
|
init { |
|
LayoutInflater.from(context).inflate(R.layout.lesson_cardview,this, false) |
|
|
|
} |
|
} |