我为我的EditText视图创建了一个拖放函数。我使用的代码与Google官方教程相同。
当我把一些东西放到EditText中时,它总是在EditText上显示一个高亮。我试过将drophelper.Options.Builder() setHighlightColor
设置为透明,但高亮区域只是改变了颜色。
有人知道如何禁用drop高亮吗?
谢谢你的帮助。
你可以添加一点不同的颜色,透明白色
android:textColorHighlight="#00FFFFFF"
或
android:background="#00000000"
并禁用默认的高亮显示
android:defaultFocusHighlightEnabled="false"
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/text_view_id"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="@string/hello"
android:defaultFocusHighlightEnabled="false"
android:textColorHighlight="#00FFFFFF" />
</LinearLayout>
自动填充框架高亮也可能是由于Android的自动填充框架,所以如果你可以使用android:autofillHints
属性。要覆盖突出显示设置:
- SDK最小版本必须为>26日
- 在应用程序的主题
(style)
添加android:autofilledHighlight
并将值设置为你想要的颜色(要"禁用"此高光,只需将其设置为透明)。