Радиокнопка в обзоре утилит с kotlin MVVM и привязкой данных - PullRequest
0 голосов
/ 08 января 2019

Кнопка повторения в обзоре утилит с kotlin, dagger2, дооснащением, liveata, MVVM и привязкой данных, мне нужен обновленный список из videModel, а также установить выбранные позиции, чтобы найти его выбрано, а другое отключено. Пожалуйста, предложите, как выбрать только один в RadioButton в списке. вот мой адаптер: -

class DocTypeListAdapter : RecyclerView.Adapter<DocTypeListAdapter.ViewHolder>() {
    private lateinit var postList: List<DriverType>

    override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): DocTypeListAdapter.ViewHolder {
        val binding: ItemDocumentTypeBinding =
            DataBindingUtil.inflate(LayoutInflater.from(parent.context), R.layout.item_document_type, parent, false)
        return ViewHolder(binding)
    }

    override fun onBindViewHolder(holder: DocTypeListAdapter.ViewHolder, position: Int) {
        holder.bind(postList[position], position, mSelectedItem)
    }

    override fun getItemCount(): Int {
        return if (::postList.isInitialized) postList.size else 0
    }

    fun updatePostList(postList: List<DriverType>) {
        this.postList = postList
        notifyDataSetChanged()
    }

    class ViewHolder(private val binding: ItemDocumentTypeBinding) : RecyclerView.ViewHolder(binding.root) {
        private val viewModel = DocTypeListViewModel()

        fun bind(post: DriverType, position: Int, selectedPosition: Int) {
//            viewModel.bind(post,true)
            viewModel.bind(post,position,selectedPosition)

//             mRadioButton : RadioButton = binding.radioButton;



            viewModel.readioButtonClicked(getAdapterPosition(),position)
            binding.viewModel = viewModel
        }
    }
}

viewModel Нравится: -

class DocTypeListViewModel : BaseViewModel() {
    private val postTitle = MutableLiveData<String>()
    private val postBody = MutableLiveData<String>()
     val isChecked = MutableLiveData<Boolean>()
    private var mSelectedItem = -1


    fun bind(post: DriverType, position: Int, selectedPosition: Int) {
        postTitle.value = post.driver_type
        postBody.value = post.description

        if ((selectedPosition == -1 && position == 0))
            isChecked.value = true
        else
            if (selectedPosition == position)
                isChecked.value = true
            else
                isChecked.value = false

    }

    fun getPostTitle(): MutableLiveData<String> {
        return postTitle
    }

    fun getPostBody(): MutableLiveData<String> {
        return postBody
    }

    fun getIsChecked(): MutableLiveData<Boolean> {
        return isChecked
    }

    fun readioButtonClicked(selectedPosition: Int, pos:Int) {
        mSelectedItem = selectedPosition

        //            mSelectedItem=getAdapterPosition()
//            notifyDataSetChanged()

    }
}

мой макет: -

<android.support.v7.widget.RecyclerView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                app:adapter="@{viewModel.getDocTypeListAdapter()}"

                android:layout_marginTop="8dp"
                app:layout_constraintTop_toBottomOf="@+id/textView9"
                app:layout_constraintStart_toStartOf="parent"
                android:layout_marginStart="8dp"
                app:layout_constraintEnd_toEndOf="parent"
                android:layout_marginEnd="8dp"
                android:id="@+id/recyclerView"
                android:layout_marginBottom="8dp"
                app:layout_constraintBottom_toTopOf="@+id/button"/>

Обязательный адтертер: -

@BindingAdapter("adapter")
fun setAdapter(view: RecyclerView, adapter: RecyclerView.Adapter<*>) {
    view.adapter = adapter
}

Ответы [ 2 ]

0 голосов
/ 12 апреля 2019

Если вы используете rxjava / rxkotlin, то оператор карты поможет вам достичь выше

val item=YourModel()   
val observable:Observable<YourModel>
observable=Observable.fromIterable(list)
observable.map { model->
    model.isChecked = filter.modelType===item.modelType
    }
}.toList().subscribeOn(Schedulers.io()).observeOn(AndroidSchedulers.mainThread()).subscribe()

После операции с картой используйте обновленный список, он выдаст желаемый результат.

0 голосов
/ 08 января 2019

Я обычно так делаю:

class YourAdapter(val selected : (YourClassType) -> Unit) : RecyclerView.Adapter<RecyclerView.ViewHolder>() {

    // override fun onCreateViewHolder

    // override fun getItemCount()

    // override fun onBindViewHolder

    inner class YourViewHolder(val binding: YourClassItemBinding) : RecyclerView.ViewHolder(binding.root) {
        fun setData(item : YourItem) {
            binding.radioButton.setOnClickListener {
                binding.radioButton.checked = true
                selected.invoke(item) // use this if you need the item in your activity
            }
            // binding.viewModel.setData
        }
    }

}

Но вам, вероятно, понадобится создать свою собственную функцию, чтобы отменить выбор других элементов radioButton в списке при их выборе.

EDIT

Я не думаю, что рекомендуется помещать адаптер в XML-файл.

Обычно я делаю это в действии, которое «владеет» RecyclerView:

class YourActivity : AppCompatActivity() {

    var listRv : RecyclerView? = null

    var viewModel = YourViewModel()

    var adapter = YourAdapter {
        // Put here the actions you want to achieve when a user click on an item and the adapter selected val is "invoked"
    }

    override fun onCreate(savedInstanceState : Bundle?) {
        super.onCreate()

        val binding = DataBindingUtil.setContentView<ActivityYourBinding>(this, R.layout.activity_your_layout)
        binding.viewModel = viewModel

        listRv = binding.yourListId
        listRv?.adapter = adapter // Set your list adapter here
        listRv?.layoutManager = LinearLayoutManager(this)


        // etc.
    }
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...