我试图让我的多线微调器工作,以为我无法弄清楚为什么它不会!(它只显示单行 - 因此文本超出边缘)。我已阅读此内容,但仍然无法正常工作。
这是我的 multi_line_spinner.xml 文件;
<CheckedTextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/text1"
style="?android:attr/spinnerDropDownItemStyle"
android:singleLine="false"
android:layout_width="match_parent"
android:layout_height="?android:attr/listPreferredItemHeight" />
还有我的活动(部分)xml文件;
<Spinner
android:id="@+id/schoolSpinner"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ems="10" />
这是我以编程方式设置 Spinner 的地方
更新:我从连接到远程服务器的 AsyncTask 获取数据。(数据检索成功)。
ArrayList<String> schoolName = new ArrayList<String>();
getTTData task = new getTTData();
task.execute("1");
try {
dataSchool = task.get();
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (ExecutionException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
int x = 0;
while(x<dataSchool.size()-1)
{
schoolName.add(dataSchool.get(x));
x++;
schoolID.add(dataSchool.get(x));
x++;
}
ArrayAdapter<String> adapter = new ArrayAdapter<String>(this, android.R.layout.simple_spinner_dropdown_item, schoolName);
adapter.setDropDownViewResource(R.layout.multi_line_spinner);
schoolSpinner.setAdapter(adapter);
schoolSpinner.setOnItemSelectedListener(this);
其中 schoolName 是字符串的 ArrayList。任何帮助深表感谢!