我有 5 个微调器。为了使它总结到这一点。
这是 xml 中的微调器
<Spinner
android:id="@+id/text_interested"
android:layout_span="2"
android:layout_width="wrap_content"
android:layout_height="60px"
android:entries="@array/interestedarrays"
android:prompt="@string/interestedprompt" />
这是 Java 中的 Spinner
submitbtn.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
interested.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {
public void onItemSelected(
AdapterView<?> adapterView, View view,
int i, long l) {
interesting = interested.getItemAtPosition(i).toString();
}
public void onNothingSelected(
AdapterView<?> adapterView) {
}
});
}
});
这里的解释:
该页面有一个按钮。按下此按钮将从微调器中读取数据。我用这个检查了输出
System.out.println(interested.getItemAtPosition(i).toString());
它甚至没有给我任何东西。
如何检索值并将其字符串化?