我想让我的应用程序使用用户从微调器中选择的值填充一个空的文本视图。目前它似乎工作,但它只填充了我猜是整个光标的文本视图:(android.database.sqlite.SQLiteCursor@4120dd08)。有人可以帮我找出问题所在吗?如有必要,我可以发布更多代码。
// Set spinner listener to populate the description field onclick.
mContext = this;
commonDescSpin.setOnItemSelectedListener(new OnItemSelectedListener() {
public void onItemSelected(AdapterView<?> parent, View view, int position, long id){
String stringItem = parent.getItemAtPosition(position).toString();
mDescriptionText.setText(stringItem);
}
public void onNothingSelected(AdapterView<?> parent) {}
});