ActionBar 下拉微调器项目默认为第一项
我正在尝试设置默认情况下需要在微调器中选择的项目的索引,但它始终默认为 0(第一项)
actionBar.setDisplayShowTitleEnabled(false);
actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_LIST);
SpinnerAdapter spinnerAdapter =
new ArrayAdapter<String>(activity, android.R.layout.simple_spinner_dropdown_item,
names);
int selectedIndex = actionBar.getSelectedNavigationIndex();
if (selectedIndex != targetIndex) {
actionBar.setSelectedNavigationItem(targetIndex);
}
。即使设置索引 2 后,下次检查时它也会返回 0。
编辑:我怀疑 getSelectedNavigationIndex 给出的是 actionBar 项的索引,而不是 Spinner 下拉项的索引。如果是这种情况,什么方法设置下拉列表中所选项目的索引?
I'm trying to set the index of the item that needs to be selected in the spinner by default, but it always defaults to 0 (1st item)
actionBar.setDisplayShowTitleEnabled(false);
actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_LIST);
SpinnerAdapter spinnerAdapter =
new ArrayAdapter<String>(activity, android.R.layout.simple_spinner_dropdown_item,
names);
int selectedIndex = actionBar.getSelectedNavigationIndex();
if (selectedIndex != targetIndex) {
actionBar.setSelectedNavigationItem(targetIndex);
}
Above if block is called always. Even after setting index 2, next time I check it returns 0.
Edit: I suspect getSelectedNavigationIndex gives index of actionBar item rather than Spinner dropdown item. If that is the case, what method sets the index of selected item inside dropdown?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
确保您调用 setListNavigationCallbacks 方法。我在你的例子中看不到它,所以我认为这就是问题所在。
这是一个例子:
它在我的应用程序中运行没有任何问题。
Make sure you call setListNavigationCallbacks method before changing selected element. I can't see it in your example, so I think that's the problem.
Here is an example:
It works in my app without any problems.
您是否尝试过使用共享首选项来保存所选微调器的值。我使用此代码来保存具有共享首选项的用户选择,以便下次他们打开应用程序时,微调器设置为他们选择的最后一个值:
然后是 get Util:
我稍微更改了代码,因此它可能不是 100% 正确但可能会给你一个想法。
Have you tried using shared prefences to save the value of the selected spinner. I used this code to save the users selection with shared preferences so the next time they opened the app the spinner was set to the last value they chose:
Then the get Util:
I altered the code a little so it might not be 100% right but may give you an idea.