gpt4 book ai didi

android - textView.getSelectionEnd() 在 Samsung Marshmallow 6.0 设备上返回起始索引值

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:13:58 26 4
gpt4 key购买 nike

此问题仅在 Android 6.0 的三星设备 上出现。它在所有其他设备上运行良好,包括搭载 Android 6.0 的非三星设备和搭载 Android 5.1 及更低版本的三星设备。

目前我们没有任何搭载 Android 6.0 的三星设备可以方便地检查它,但我们很快就会安排。


我们正在使用的功能:

用户长按 TextView 中句子中的单词,然后用户可以编辑所选单词。


我们通过以下方式实现这一目标:

  • 使 TextView 可选择并添加 LongClickListener。
  • 添加自定义选择操作模式回调并覆盖 onCreateActionMode() 以返回 false,因为我们不需要默认的剪切-复制-粘贴操作模式。
  • 处理 onLongClickListener 以获得准确的所选单词并提供一个 UI 来更正和替换单词。

我们面临的问题:

textView.getSelectionStart() 返回正确的开始索引,但 textView.getSelectionEnd() 返回开始索引的值而不是结束索引。我们有一个保护条件,只要开始和结束索引相同,那么选择的是一个空格,因此我们忽略它,因此在 Android 6.0 及更高版本的三星设备上所有的单词选择都被忽略,导致功能失败。


我们尝试过的事情:

  • 我们尝试将 ActionMode.Callback 替换为ActionMode.Callback2,如 Android 6.0 Changes 页“文本选择”部分所述但这对解决这个问题没有帮助问题。
  • 尝试搜索与文本选择、剪贴板等相关的任何额外三星设置,但没有成功。我知道这可能是一个蹩脚的选择,但我不会冒险使用 Samsung Touchwiz。我确实找到了一个设置来改变触摸选择的延迟,范围从 0.5 到 2.0 秒。

代码 fragment :

tvText.setCustomSelectionActionModeCallback(new ActionMode.Callback() {
@Override
public boolean onCreateActionMode(ActionMode mode, Menu menu) {
return false; // true = create the ActionMode
}

@Override
public boolean onPrepareActionMode(ActionMode mode, Menu menu) {
return false;
}

@Override
public boolean onActionItemClicked(ActionMode mode, MenuItem item) {
return false;
}

@Override
public void onDestroyActionMode(ActionMode mode) {
}
});

tvText.setOnLongClickListener(new View.OnLongClickListener() {

@Override
public boolean onLongClick(View v) {

final TextView textView = (TextView) v;
new Handler().postDelayed(new Runnable() {

@Override
public void run() {

//This works correct on all devices with Android 6.0
int startIndex = textView.getSelectionStart();

//This works wrong on Samsung devices with Android 6.0, result is same as getSelectionStart()
int endIndex = textView.getSelectionEnd();

//The guard condition where we ignore the empty selections
if ((endIndex - startIndex) <= 0) {
return;
}

// Do bunch of things to UI like applying some different foreground colors to the selected word, striking out selected word etc.
}
}, TEXT_LONG_PRESS_DELAY);
return false;
}
});

TextView 的 xml 代码及其样式:

<TextView
android:id="@+id/tvText"
style="@style/StyleChatBubbleText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="2dp"/>

<style name="StyleChatBubbleText">
<item name="android:layout_width">wrap_content</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:textSize">16dp</item>
<item name="android:textColor">@color/text_black</item>
<item name="android:textIsSelectable">true</item>
<item name="typeface">roboto_regular</item>


感谢有关此问题的任何帮助。

最佳答案

检查构建版本如果 buildversion >= 6 返回 true ,使用您的自定义布局实现 float 工具栏。如果 buildversion <6 返回 false,请使用您当前的实现

关于android - textView.getSelectionEnd() 在 Samsung Marshmallow 6.0 设备上返回起始索引值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37429711/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com