无法删除TextView底部边框

时间:2019-12-01 17:52:31

标签: java android android-studio textview

我多次尝试删除TextView的烦人的默认底部边框,但没有成功。

这是我尝试过的:

android:background="@null"
android:background="@android:color/transparent"
textview.setPaintFlags(textview.getPaintFlags() & (~ Paint.UNDERLINE_TEXT_FLAG));
textview.setPaintFlags(0);
textview.setBackgroundDrawable(null);
textview.setBackground(null);
textview.setPaintFlags(View.INVISIBLE);

enter image description here

0 个答案:

没有答案
相关问题