如何使用xml和数据绑定在AppCompactSpinner中设置默认值?

时间:2019-11-22 10:47:37

标签: android android-spinner android-appcompat

我想在回收站视图中使用AppCompactSprinner,在单元格中,我捕获了AppCompactSpinner的响应,但是一旦滚动并且单元格失去焦点,值就会重置,有没有办法使用XML和数据绑定设置默认值,我的单元格布局看起来像

<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools">

    <data>
        <variable
            name="obj"
            type="com.example.SpinnerCell" />

        <variable
            name="lis"
            type="com.example.CustomSpinnerListener" />
    </data>

    <androidx.constraintlayout.widget.ConstraintLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingStart="@dimen/four_dp"
        android:paddingTop="@dimen/four_dp"
        android:paddingEnd="@dimen/four_dp"
        android:paddingBottom="@dimen/four_dp"
        tools:layout_editor_absoluteX="1dp">

        <TextView
            android:id="@+id/editText"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:labelFor="@+id/spinner"
            android:singleLine="false"
            android:text="@{obj.question}"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintEnd_toStartOf="@+id/spinner"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent" />

        <androidx.appcompat.widget.AppCompatSpinner
            android:id="@+id/spinner"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:entries="@{obj.options}"
            android:onItemSelected="@{(parent,view,pos,id)->lis.onSpinnerItemSelected(parent,view,pos,id, obj)}"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toEndOf="@+id/editText"
            app:layout_constraintTop_toTopOf="parent" />
    </androidx.constraintlayout.widget.ConstraintLayout>
</layout>

0 个答案:

没有答案