Android 设置EditView不可点击不可编辑

代码:

//去掉点击时编辑框下面横线:
et_ages.setEnabled(false);
//不可编辑
et_ages.setFocusable(false);
//失去焦点
et_ages.setFocusableInTouchMode(false);

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-11
  • 2022-12-23
  • 2022-12-23
  • 2021-12-02
猜你喜欢
  • 2022-12-23
  • 2022-02-01
  • 2021-11-17
  • 2022-12-23
  • 2021-11-17
  • 2021-12-02
  • 2022-12-23
相关资源
相似解决方案