将 Spinner 与 SimpleCursorAdapter 结合使用

发布于 2024-08-18 05:19:23 字数 1176 浏览 3 评论 0原文

我有一个活动,其中有一个 Spinner 小部件来显示类别。最初,我使用 ArrayAdapter 来填充微调器,如以下代码所示。

private static final String[] arrayCategories = {
  "Business", 
  "Personal"
};

mCatSpinner = (Spinner) findViewById(R.id.thecategory);
ArrayAdapter<String> catAdapter = new ArrayAdapter<String>(this, R.layout.track_category_item, arrayCategories);
catAdapter.setDropDownViewResource(R.layout.track_category_dropdown_item); 
mCatSpinner.setAdapter(catAdapter);

这工作正常,如果未进行选择,微调器默认显示第一个数组项。当实际选择某个项目时,它确实显示所选项目

,但现在我想使用 SimpleCursorAdapter 从数据库中提取列表内容。所以我将其更改为

SimpleCursorAdapter scaCategories = new SimpleCursorAdapter(this, R.layout.track_category_item,cCategories,new String[] {DBAdapter.KEY_CATEGORIES_NAME},new int[]{R.id.text1});
scaCategories.setDropDownViewResource(R.layout.track_category_dropdown_item); 
mCatSpinner = (Spinner) findViewById(R.id.thecategory);
mCatSpinner.setAdapter(scaCategories);

“填充下拉列表”,但它不显示微调器中的第一项。即使选择,也不会显示所选项目。

我尝试使用 setSlection 到第一个项目,

if(mCatSpinner.isSelected() != true) {
    mCatSpinner.setSelection(0);
}

但它不起作用

出了什么问题?

I have an activity which has a Spinner widget to display categories. Initially I was using an ArrayAdapter to populate the the spinner as in the following code

private static final String[] arrayCategories = {
  "Business", 
  "Personal"
};

mCatSpinner = (Spinner) findViewById(R.id.thecategory);
ArrayAdapter<String> catAdapter = new ArrayAdapter<String>(this, R.layout.track_category_item, arrayCategories);
catAdapter.setDropDownViewResource(R.layout.track_category_dropdown_item); 
mCatSpinner.setAdapter(catAdapter);

This works fine, and the spinner displays the first array item by default if no selection is made. It does show the selected item when an item is actually selected

But now I want to use a SimpleCursorAdapter to pull the list contents from a db. So I changed it to

SimpleCursorAdapter scaCategories = new SimpleCursorAdapter(this, R.layout.track_category_item,cCategories,new String[] {DBAdapter.KEY_CATEGORIES_NAME},new int[]{R.id.text1});
scaCategories.setDropDownViewResource(R.layout.track_category_dropdown_item); 
mCatSpinner = (Spinner) findViewById(R.id.thecategory);
mCatSpinner.setAdapter(scaCategories);

This populates the dropdown, but it does not display the first item in the spinner. Even if selected, it does not show the selected item.

I tried to setSlection to the first item using

if(mCatSpinner.isSelected() != true) {
    mCatSpinner.setSelection(0);
}

but it didn't work

What is wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

〆一缕阳光ご 2024-08-25 05:19:23

好的,如果我在布局 xml 中指定小部件 id 将会有所帮助。 <:(

Ok, it would help if I specified the widget id in the layout xml. <:(

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文