安卓edittext光标的箭头

edittext光标有个箭头,通过箭头可以移动光标的位置,我想隐藏那个箭头,让用户不能拖动光标,有什么办法可以做到呢,百度好久都没查到,我看过腾讯漫画发弹幕的编辑框可以做到

edit1.setCursorVisible(false);

找到了一个方法,设置个shape:bg_edit_cursor_none
android:shape="rectangle">

<size android:width="0dp"/>

然后在edittext里面添加android:textSelectHandle="@drawable/bg_edit_cursor_none"