当前位置: 代码迷 >> Android >> android暗藏edittext的光标
  详细解决方案

android暗藏edittext的光标

热度:55   发布时间:2016-05-01 20:14:22.0
android隐藏edittext的光标
在edittext之前加这个

<LinearLayout android:focusable="true"      android:focusableInTouchMode="true" android:layout_width="0px"      android:layout_height="0px" />
  相关解决方案