forked from melod1n/fast-messenger
16 lines
367 B
Kotlin
16 lines
367 B
Kotlin
package com.meloda.fast.widget
|
|
|
|
import android.content.Context
|
|
import android.util.AttributeSet
|
|
import androidx.recyclerview.widget.RecyclerView
|
|
|
|
class RecyclerView @JvmOverloads constructor(
|
|
context: Context,
|
|
attrs: AttributeSet? = null,
|
|
defStyleAttr: Int = 0
|
|
) : RecyclerView(context, attrs, defStyleAttr) {
|
|
|
|
var noItemsView: NoItemsView? = null
|
|
|
|
|
|
} |