Use BindableItem in FeedGroupAddItem.
This commit is contained in:
parent
46afe5153f
commit
b387946d34
1 changed files with 6 additions and 4 deletions
|
@ -1,10 +1,12 @@
|
||||||
package org.schabi.newpipe.local.subscription.item
|
package org.schabi.newpipe.local.subscription.item
|
||||||
|
|
||||||
import com.xwray.groupie.kotlinandroidextensions.GroupieViewHolder
|
import android.view.View
|
||||||
import com.xwray.groupie.kotlinandroidextensions.Item
|
import com.xwray.groupie.viewbinding.BindableItem
|
||||||
import org.schabi.newpipe.R
|
import org.schabi.newpipe.R
|
||||||
|
import org.schabi.newpipe.databinding.FeedGroupAddNewItemBinding
|
||||||
|
|
||||||
class FeedGroupAddItem : Item() {
|
class FeedGroupAddItem : BindableItem<FeedGroupAddNewItemBinding>() {
|
||||||
override fun getLayout(): Int = R.layout.feed_group_add_new_item
|
override fun getLayout(): Int = R.layout.feed_group_add_new_item
|
||||||
override fun bind(viewHolder: GroupieViewHolder, position: Int) {}
|
override fun bind(viewBinding: FeedGroupAddNewItemBinding, position: Int) {}
|
||||||
|
override fun initializeViewBinding(view: View) = FeedGroupAddNewItemBinding.bind(view)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue