android 用多行填充微调器项目

of1yzvn4  于 2023-03-16  发布在  Android
关注(0)|答案(5)|浏览(141)

我的微调器中的一些项目很长,我希望微调器根据文本的长度将文本换行到多行。我查看了几个解决方案,但它们不适合我。
此处显示文本不合适:

下面是我的Java代码:

public void addItemsOnSpinner3() {

        spinner3D = (Spinner) findViewById(R.id.activities1);
        List<String> list = new ArrayList<String>();
        list.add("Academic Year Opening Program");
        list.add("Academic Year Closing Program");
        list.add("LR1: Defining Primary Care, Health Care Disparities & Vulnerable Populations");
        list.add("LR2: Community Resources and the Elderly");
        list.add("LR3: Inter-professional Teams and the Homeless");
        list.add("LR4: Quality Improvement and Veterans");
        ArrayAdapter<String> dataAdapter = new ArrayAdapter<String>(this,
                R.layout.multiline_spinner_row, list);
        dataAdapter.setDropDownViewResource(R.layout.multiline_spinner_row);
        spinner3D.setAdapter(dataAdapter);
    }

我创建了一个名为“multiline_spinner_row.xml”的自定义行,其中singleline被更改为false:

<TextView android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:singleLine="false"
    xmlns:android="http://schemas.android.com/apk/res/android" />

所有这一切只是让我的选择环绕文本,而不是项目:

任何帮助将不胜感激!提前感谢!

0wi1tuuw

0wi1tuuw1#

在微调器中设置此属性:

android:spinnerMode="dialog"

在文本视图中设置以下属性:

android:layout_weight="1"  
android:ellipsize="none"  
android:maxLines="100"  
android:scrollHorizontally="false"
oknwwptz

oknwwptz2#

这实际上对我有效(在Xamarin Android中,但问题是相同的):
代替

adapter.SetDropDownViewResource(Android.Resource.Layout.SimpleSpinnerDropDownItem);

adapter.SetDropDownViewResource(Android.Resource.Layout.SimpleExpandableListItem1);
8qgya5xd

8qgya5xd3#

创建这样的xml文件,您的xml将需要有一个父布局来 Package TextView。

<RelativeLayout 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"
android:layout_width="match_parent"
android:layout_height="wrap_content">

<androidx.appcompat.widget.AppCompatTextView
    android:id="@+id/textView"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:padding="10dp"
    android:textColor="#333333"
    android:textSize="15sp"
    tools:text="123" />

</RelativeLayout>

确保你的TextView有一个id,然后像这样创建你的适配器。

private ArrayAdapter<CharSequence> stringAdapter = new ArrayAdapter<>(context, R.layout.spinner_textview, R.id.textView, displayTexts);

使用这个consturctor

public ArrayAdapter(@NonNull Context context, @LayoutRes int resource,
        @IdRes int textViewResourceId, @NonNull List<T> objects) {
    this(context, resource, textViewResourceId, objects, false);
}

或将textViewResourceId作为参数的任何构造函数
就是这样.你不需要覆盖任何其它的.检查下面的图像来查看效果. enter image description hereenter image description here

lztngnrs

lztngnrs4#

"试试这个"
我用简单的编码解决了这个问题。
为Spinner分配适配器时,只需添加Android.Resource.Layout.SimpleExpandableListItem1,如下所示。
请在https://notostuck.blogspot.com/2020/08/how-to-populating-spinner-items-with.html上检查更多信息

mkh04yzy

mkh04yzy5#

用这个

adapter.setDropDownViewResource(android.R.layout.simple_expandable_list_item_1);

相关问题