当用户选择文本时,我试图在textSelectHandleLeft
上隐藏textSelectHandleRight
和WebView
,我希望选择文本,但希望隐藏这些灰色气泡类型的句柄。
当前,我正在使用setTheme()
,并通过以下代码更改为textSelectHandleLeft
和textSelectHandleRight
的高度,但是由于第二次工作无法立即生效:
<style name="CustomThemeForTextSelection" parent="@android:style/Theme.Holo.Light">
<item name="android:textSelectHandleLeft">@drawable/empty_handle</item>
<item name="android:textSelectHandleRight">@drawable/empty_handle</item>
<item name="android:textSelectHandle">@drawable/empty_handle</item>
</style>
<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" >
<size android:height="0dp" android:width="0dp"/>
</shape>