我正在學習android我試過下面的codeline,但它給了我錯誤,請給我一些建議,那我該如何比較兩個edittext
的文本。如果你有比較字符串,那麼你需要調用字符串的equals
或equalsIgnoreCase
功能在android中比較兩個editTexts
if((edt1.getText().toString.equalsIgnoreCase("X")) &&
(edt4.getText().toString.equalsIgnoreCase("X")) &&
(edt7.getText().toString.equalsIgnoreCase("X")))
:
if((edt1.getText().toString() &&
edt4.getText().toString() &&
edt7.getText().toString)=="X")
只是要清楚:你想要做的是檢查可變數量的字符串,看看它們是否都包含「X」,是嗎?所以@hoipolloi實際上正確地回答了你的問題? (如果是這樣,請點擊答案左邊的複選標記以將其標記爲接受的答案) – Kjartan