微调值在旋转后消失

Spinner values dissapear after rotation

我*有一个简单的“material 微调器”实现:

<com.google.android.material.textfield.TextInputLayout
    style="@style/Widget.MaterialComponents.TextInputLayout.FilledBox.ExposedDropdownMenu"
    android:layout_width="match_parent" 
    android:layout_height="wrap_content">

    <AutoCompleteTextView
        android:id="@+id/filled_exposed_dropdown"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:inputType="none"/>

</com.google.android.material.textfield.TextInputLayout>

还有我填充列表的片段 onCreate 方法

AutoCompleteTextView editTextFilledExposedDropdown;
ArrayAdapter<String> adapter = null;

@Override
public void onViewCreated(@NonNull View view, @Nullable Bundle savedInstanceState) {
    String[] type = new String[] {"Bed-sitter", "Single", "1- Bedroom", "2- Bedroom","3- Bedroom"};
    adapter =new ArrayAdapter<>( getContext(),R.layout.dropdown_menu_popup_item, type);
    editTextFilledExposedDropdown = view.findViewById(R.id.filled_exposed_dropdown);
    editTextFilledExposedDropdown.setAdapter(adapter);
}

只要我不选择项目并旋转 phone,代码就可以正常工作。 旋转 phone 后,将再次调用 onCreate 方法,但由于某种原因,唯一可用的项目是我之前选择的项目。 菜单不显示所有其他项目。

可能是什么原因? 我故意重新填充 arrayadapter 只是为了确保在旋转 phone.

时使用相同的对象

使用自定义视图。这是 materialdesign class 的一个错误,目前尚未修复:

public class ExposedDropdownMenu extends MaterialAutoCompleteTextView {

    public ExposedDropdownMenu(@NonNull @NotNull Context context) {
        super(context);
    }
    public ExposedDropdownMenu(@NonNull @NotNull Context context, @Nullable @org.jetbrains.annotations.Nullable AttributeSet attributeSet) {
        super(context, attributeSet);
    }


    public ExposedDropdownMenu(@NonNull @NotNull Context context, @Nullable @org.jetbrains.annotations.Nullable AttributeSet attributeSet, int defStyleAttr) {
        super(context, attributeSet, defStyleAttr);
    }

    @Override
    public boolean getFreezesText() {
        return false;
    }
}

在 onResume() 方法中设置适配器,它将正常工作。

@override
public void onResume(){
    super.onResume()
    String[] type = new String[] {"Bed-sitter", "Single", "1- Bedroom", "2- Bedroom","3- Bedroom"};
    adapter =new ArrayAdapter<>( getContext(),R.layout.dropdown_menu_popup_item, type);
    editTextFilledExposedDropdown = view.findViewById(R.id.filled_exposed_dropdown);
    editTextFilledExposedDropdown.setAdapter(adapter);l̥
}