Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何从 Java 中基于数字的微调器中获取选定的值?
正如我旁注的那样,为什么 android 总是出现在搜索词 spinner 下
AJSpinner有一个SpinnerModel, 存储选定的值、值的边界和步长等。
JSpinner
SpinnerModel
JSpinner spinner; Object value = spinner.getModel().getValue();
其他 Spinners 也以这种方式工作。它基于 Model-View-Controller(MVC)-Pattern 并将数据与其表示和操作分开。