gpt4 book ai didi

android - 用多行填充微调项

转载 作者:行者123 更新时间:2023-11-29 15:36:14 25 4
gpt4 key购买 nike

我的微调器中的某些项目很长,我希望微调器根据文本的长度将文本换行成多行。我为此查看了 serval 解决方案,但它们不适合我。

这里显示的文字不合适:

enter image description here

这是我的 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”的自定义行,其中单行更改为 false:

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

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

enter image description here

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

最佳答案

在微调器中设置这个属性:

android:spinnerMode="dialog"

在 TextView 中设置这些属性:

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

关于android - 用多行填充微调项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49468842/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com