android去掉Edittext的下边线

在xml文件中设置以下这个属性即可:

android:background="@null"
style="?android:attr/textViewStyle"

如:

<EditText    
  android:layout_width="match_parent"    
  android:layout_height="200dp"    
  android:background="@null"    
  style="?android:attr/textViewStyle"
/>

更新填坑,经过上述设置之后我发现的确没有边框了,但是有一个问题,就是我的光标也不见了,我猜是因为将样式设置成textview的后果,然后我就把style那句删了,发现既有光标又没有边框,开心
以下是更新后的代码

<EditText    
  android:layout_width="match_parent"    
  android:layout_height="200dp"    
  android:background="@null"    
/>
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

相关阅读更多精彩内容

友情链接更多精彩内容