要删除已有背景的EditText行中的下划线,可以通过以下步骤实现:
<style name="NoUnderlineEditText" parent="Widget.AppCompat.EditText">
<item name="android:background">@null</item>
</style>
<EditText
android:id="@+id/editText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
style="@style/NoUnderlineEditText" />
EditText editText = findViewById(R.id.editText);
editText.setBackgroundColor(Color.TRANSPARENT);
这样,已有背景的EditText行中的下划线就会被删除。
推荐的腾讯云相关产品:腾讯云移动直播(https://cloud.tencent.com/product/mlvb)可以用于实时音视频直播,适用于在线教育、社交娱乐、游戏直播等场景。
领取专属 10元无门槛券
手把手带您无忧上云