在android中比较两个editText
我正在学习 android,我尝试遵循代码线,但它给了我错误,请给我建议,我如何比较两个 edittext
的文本。
if((edt1.getText().toString() &&
edt4.getText().toString() &&
edt7.getText().toString)=="X")
I am learning android I tried following codeline but it's giving me error please give me suggestions, that how can I compare two edittext
's text.
if((edt1.getText().toString() &&
edt4.getText().toString() &&
edt7.getText().toString)=="X")
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
这里有一个不违反DRY原则的解决方案:
您可以按如下方式使用它:
Here's a solution that doesn't violate the DRY principle:
You can use it as follows:
请尝试这样做:
如果您必须比较字符串,那么您需要调用 String 的
equals
或equalsIgnoreCase
函数。Please try this:
If you have to compare strings then you need to call the
equals
orequalsIgnoreCase
function of String.我找到了最好的解决方案..
而
有两个editText。
I have find the best solution..
whereas
are two editText.
如果你想检查 edt1、edt4、edt7 是否有“X”值,那么试试这个。
if you want to check edt1, edt4, edt7 have "X" value then try this..
让它变得简单:
Make it simple: