在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"
/>