当我在编辑文本中输入文本时,我想删除下划线装饰。更重要的是,是否有可能摆脱输入文本与其下方蓝色边框之间的填充或边距?
现在,edittext看起来像这样:
答案 0 :(得分:0)
使用以下代码在drawables文件夹中创建edit_text_background.xml
:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="@android:color/white"></solid>
</shape>
然后只需将android:background="@drawable/edit_text_background"
字段设置为相同的可绘制文件。
答案 1 :(得分:-1)
editText.setBackroundDrawable(空);