EditText中getText().toString() 得到的字符串 写法如下
if(m_txtAddress.getText().toString()=="") 这样写 是不会为真的
应写为
if(m_txtAddress.getText().toString().equals("")==true){

相关文章:

  • 2021-11-12
  • 2021-11-17
  • 2021-10-30
  • 2021-09-19
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-06-18
  • 2022-12-23
  • 2022-02-14
  • 2021-12-28
相关资源
相似解决方案