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.
嗨,我无法将所有号码选择器小部件都放在屏幕上。有没有办法关闭数字选择器上的加号和减号栏以节省空间?
如果您删除加号和减号按钮,您只剩下一个只接受数字的 EditText。为什么不直接使用一系列 EditText?
<EditText android:layout_width="match_parent" android:layout_height="wrap_content" android:inputType="number" />
您没有解释 NumberPickers 不适合的原因,也许您可以将它们包装在 ScrollView 或 HorizontalScrollView 中?