NewPipe-app-android/app/src/main/java/org/schabi/newpipe/local/subscription/item/FeedGroupAddNewItem.kt

15 lines
595 B
Kotlin
Raw Normal View History

package org.schabi.newpipe.local.subscription.item
2020-11-27 15:49:48 +01:00
import android.view.View
import com.xwray.groupie.viewbinding.BindableItem
import org.schabi.newpipe.R
2020-11-27 15:49:48 +01:00
import org.schabi.newpipe.databinding.FeedGroupAddNewItemBinding
class FeedGroupAddNewItem : BindableItem<FeedGroupAddNewItemBinding>() {
override fun getLayout(): Int = R.layout.feed_group_add_new_item
2020-11-27 15:49:48 +01:00
override fun initializeViewBinding(view: View) = FeedGroupAddNewItemBinding.bind(view)
2022-10-27 17:52:17 +02:00
override fun bind(viewBinding: FeedGroupAddNewItemBinding, position: Int) {
// this is a static item, nothing to do here
}
2020-05-01 20:13:21 +02:00
}