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.
if(EditText1.getText().toString().equals("National")) { .. .. }
これは実際に「National」という言葉を比較していますね。
私の必要性は、単語を比較する必要がありますが、「National」という単語の残りの部分です。
( ) を使用しない!:
!
if(!EditText1.getText().toString().equals("National")){...}