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原生应用程序中进行客户端验证吗?即在XML页面本身我们可以检查字段是否为空,电话号码只有数字等
您可以通过添加类型(在 xml 中)作为限制用户在 textBox 中仅输入数字字段
android:inputType="number"
所以你不需要验证它的数字。但是是的,对于检查空文件,您可能需要通过比较 textBox 值的长度来检查 java 代码。