Honeycomb 下的 editText 中没有光标

发布于 2024-11-04 16:44:10 字数 324 浏览 2 评论 0原文

我有一个使用内部 ime 的应用程序(这意味着 ime 只是应用程序内的代码,而不是真正的 ime)。我使用此 ime 面板来输入/编辑 editText。到 Froyo 为止一切正常(我还没有在 Gingerbread 下进行过测试)。然而,在 Honeycomb 上,我可以输入文本并对其进行编辑,但没有显示光标或文本突出显示!有谁知道如何解决这个问题?我不想只是为了纠正这个问题而将我的代码分叉到特殊的 Honeycomb 版本。

我已将 xmlcursorVisible 元素显式设置为 true,然后在代码中使用 setCursorVisible 将其设置为 true,但这没有帮助。

谢谢!

I have an application that uses an internal ime (meaning the ime is just code within the application and not a true ime). I use this ime panel to enter/edit an editText. Everything works fine up to Froyo (I have not tested under Gingerbread). On Honeycomb, however, I can input text and edit it but no cursor or text highlight is displayed! Does anyone know how to work around this? I'd rather not fork my code to a special Honeycomb version just to correct this one problem.

I have explicitly set the xml cursorVisible element to true and then set it to true with setCursorVisible in the code but that doesn't help.

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

神爱温柔 2024-11-11 16:44:10

将这些属性添加到您的 EditText 中,以使闪烁的光标变为黑色:

android:textColor="#000000"
android:textCursorDrawable="@null"

如果您使用 Holo 主题,则需要它。
来自:https://stackoverflow.com/a/9165217/1267112

Add these attributes to your EditText, to make the blinking cursor black:

android:textColor="#000000"
android:textCursorDrawable="@null"

It's needed if you're using the Holo theme.
From: https://stackoverflow.com/a/9165217/1267112

我三岁 2024-11-11 16:44:10

您可以尝试下面的代码片段。

public static void setCursorVisible(EditText editText, Context context) {
    editText.setCursorVisible(true);
    // sdk
    // http://developer.android.com/guide/topics/manifest/uses-sdk-element.html
    if (android.os.Build.VERSION.SDK_INT >= 12) {// Android 3.1.x  API12
                                                    // HONEYCOMB_MR1
        String filedNameString = "mCursorDrawableRes";
        // mCursorDrawableRes
        Class<? extends EditText> editTextClass = editText.getClass();
        Class<? extends TextView> textViewClass = null;
        if (editTextClass != null) {
            textViewClass = (Class<? extends TextView>) editTextClass
                    .getSuperclass();
        }
        if (textViewClass != null) {
            Field mCursorDrawableField = null;
            try {
                mCursorDrawableField = textViewClass
                        .getDeclaredField(filedNameString);
            } catch (NoSuchFieldException e) {
                // TODO Auto-generated catch block
                Log.i(TAG, "NoSuchFieldException");
                e.printStackTrace();
            }
            if (mCursorDrawableField != null) {
                mCursorDrawableField.setAccessible(true);
                try {
                    mCursorDrawableField.set(editText, 0);

                } catch (IllegalArgumentException e) {
                    Log.i(TAG, "IllegalArgumentException");
                    e.printStackTrace();
                } catch (NotFoundException e) {
                    Log.i(TAG, "NotFoundException");
                    e.printStackTrace();
                } catch (IllegalAccessException e) {
                    Log.i(TAG, "IllegalAccessException");
                    e.printStackTrace();
                }
            }

        }
    }

You can try the code snip below.

public static void setCursorVisible(EditText editText, Context context) {
    editText.setCursorVisible(true);
    // sdk
    // http://developer.android.com/guide/topics/manifest/uses-sdk-element.html
    if (android.os.Build.VERSION.SDK_INT >= 12) {// Android 3.1.x  API12
                                                    // HONEYCOMB_MR1
        String filedNameString = "mCursorDrawableRes";
        // mCursorDrawableRes
        Class<? extends EditText> editTextClass = editText.getClass();
        Class<? extends TextView> textViewClass = null;
        if (editTextClass != null) {
            textViewClass = (Class<? extends TextView>) editTextClass
                    .getSuperclass();
        }
        if (textViewClass != null) {
            Field mCursorDrawableField = null;
            try {
                mCursorDrawableField = textViewClass
                        .getDeclaredField(filedNameString);
            } catch (NoSuchFieldException e) {
                // TODO Auto-generated catch block
                Log.i(TAG, "NoSuchFieldException");
                e.printStackTrace();
            }
            if (mCursorDrawableField != null) {
                mCursorDrawableField.setAccessible(true);
                try {
                    mCursorDrawableField.set(editText, 0);

                } catch (IllegalArgumentException e) {
                    Log.i(TAG, "IllegalArgumentException");
                    e.printStackTrace();
                } catch (NotFoundException e) {
                    Log.i(TAG, "NotFoundException");
                    e.printStackTrace();
                } catch (IllegalAccessException e) {
                    Log.i(TAG, "IllegalAccessException");
                    e.printStackTrace();
                }
            }

        }
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文