Fragment 中 NestedScrollView 中的下拉微调器

问题描述

我正在片段中制作下拉菜单(微调器)。我还需要那个页面一个 Recyclerview 来扩展和滚动页面,所以我使用嵌套滚动视图。 Java 代码

Spinner dropdown = root.findViewById(R.id.dropdown);
    ArrayAdapter<String> adapter = new ArrayAdapter<>(getActivity(),android.R.layout.simple_spinner_dropdown_item,arrayList);
    adapter.setDropDownViewResource( android.R.layout.simple_spinner_dropdown_item );
    dropdown.setAdapter(adapter);

    dropdown.setonItemSelectedListener(new AdapterView.OnItemSelectedListener() {
        @Override
        public void onItemSelected(AdapterView<?> parent,View view,int position,long id) {
            Toast.makeText(getContext(),parent.getItemAtPosition(position).toString(),Toast.LENGTH_SHORT).show();
        }

        @Override
        public void onnothingSelected(AdapterView<?> parent) {
        }
    });

Xml 代码

<androidx.core.widget.nestedScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:tools="http://schemas.android.com/tools"
android:paddingBottom="65dp"
tools:context=".ui.dashboard.ShelvesFragment">

<androidx.appcompat.widget.LinearLayoutCompat
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="vertical">

        <androidx.appcompat.widget.LinearLayoutCompat
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical">

            <Spinner
                android:id="@+id/dropdown"
                android:layout_width="match_parent"
                android:layout_height="40dp"
                android:background="@color/honeyBright"
                android:textColor="#545454"
                android:spinnerMode="dropdown"
                android:layout_margin="15dp"/>

            <androidx.recyclerview.widget.RecyclerView
            android:id="@+id/shelves"
            android:layout_width="match_parent"
            android:layout_height="wrap_content" />
    </androidx.appcompat.widget.LinearLayoutCompat>
</androidx.appcompat.widget.LinearLayoutCompat>
</androidx.core.widget.nestedScrollView>

当我运行此代码时,它仅将其显示为下拉列表:Dropdown Spinner Image

当我使用 R.array 值和 CharSequence 适配器时它确实有效,但我需要它是一个数组列表,我不确定我当时使用的确切代码

编辑: 我发现 ArrayList 实际上没有任何项目,这就是它没有出现的原因。所以我只是解决了这个问题,而且效果很好。

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)

相关问答

Selenium Web驱动程序和Java。元素在(x,y)点处不可单击。其...
Python-如何使用点“。” 访问字典成员?
Java 字符串是不可变的。到底是什么意思?
Java中的“ final”关键字如何工作?(我仍然可以修改对象。...
“loop:”在Java代码中。这是什么,为什么要编译?
java.lang.ClassNotFoundException:sun.jdbc.odbc.JdbcOdbc...