gpt4 book ai didi

android - 如何在 PopupWindow 中为 EditText 启用选择标记?

转载 作者:塔克拉玛干 更新时间:2023-11-02 07:51:12 27 4
gpt4 key购买 nike

我在 PopupWindow 中使用 EditText。它显示 OK,但选择标记未显示在 EditText 中。当我在 EditText 中长按时,选项菜单也没有改变。在 LogCat 中我看到一个警告

TextView does not support text selection. Action mode cancelled.

因此,EditText 无法从剪贴板复制/粘贴文本。有没有办法在 PopupWindow 中获得“正常”EditText 行为?

此代码显示了问题,但我也尝试了很多变体:

EditText edit = new EditText(getContext());
edit.setBackgroundColor(Color.BLUE);
PopupWindow popup = new PopupWindow(edit, 100, 100, true);
popup.setBackgroundDrawable(new BitmapDrawable());
popup.showAtLocation(this, Gravity.NO_GRAVITY, 100, 200);

最佳答案

试试这个,

   editText.setSelectAllOnFocus(true);

关于android - 如何在 PopupWindow 中为 EditText 启用选择标记?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8035159/

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