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.
我正在开发适用于 Android 的计算器应用程序。我想知道显示计算值的最佳选择是什么?目前我正在EditText控件中显示结果。
EditText
我想知道 Android 中的标签控件之类的东西是否可用。
标签是否有等效控件?
是的。它相当于TextView。
是的,您可以TextView 在 Android 中使用相当于标签功能的控件。
TextView
如果您希望该用户也从键盘编写图形,那么您应该提供一个EditText。
如果您只有 Keyborad 用于输入,则提供一个TextView。