EditText选择锚点丢失

时间:2015-07-16 21:36:28

标签: android android-edittext

我刚刚注意到我的应用中的所有EditText字段都没有正确显示选择锚点。例如:

Image with no selection anchors

然而,我期望的是出现正确的锚点,如:

Image with selection anchors

我的应用中受影响的EditText的典型示例:

<EditText
    android:id="@+id/text_message"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_toLeftOf="@id/button_send"
    android:layout_marginLeft="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:inputType="text|textShortMessage"
    android:layout_marginRight="4dp"
    android:hint="@string/hint_chat_send" />

另请注意,“粘贴”悬停视图在我的应用中有一个奇怪的白色边框,但在其他应用中它完全透明。

我怀疑某种主题问题,因为它会影响我的应用中的多个屏幕,但我无法找到有关哪些属性可能导致此问题的信息。

更新

所以,我花了太多时间一些来调试EditTextTextViewEditor框架类无济于事。 出现的所有内容都按预期运行。

我在同一个应用程序中使用以下布局创建了一个新的空白Activity

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin">

    <EditText
        android:layout_width="300dp"
        android:layout_height="wrap_content"
        android:hint="test" />

</RelativeLayout>

在我的其他屏幕中,我正在使用AppCompat库及其相关主题,但在此Activity我使用内置材料覆盖主题和活动成为股票Android Activity主题:

public class TestActivity extends Activity {

@Override
protected void onCreate(Bundle savedInstanceState) {

    setTheme(android.R.style.Theme_Material_Light_NoActionBar);
    super.onCreate(savedInstanceState);

    setContentView(R.layout.activity_test);
}
...

我理解以这种方式调用setTheme应该覆盖我的应用styles.xml中的任何可能的自定义设置。不过,我看到了这一点:

Markers not shown on simulator

还有点不知所措......

2 个答案:

答案 0 :(得分:1)

解决方案是删除我在主题中设置的android:popupBackground

<!-- This will break the text selection popup -->
<item name="android:popupBackground">@color/not_quite_white</item>

我有这个设置尝试将所有Spinner下拉背景主题化为相同的颜色。无论出于何种原因,它都会干扰文本选择弹出窗口。此外,调用Activity.setTheme显然没有覆盖此属性,导致一些混淆。

答案 1 :(得分:0)

负责绘制句柄的类是SelectionModifierCursorController,它位于Editor类中。为了不显示游标(左右选择光标),必须在实例上调用hide。例如,当视图的触摸模式发生变化时,就会完成此操作。

http://androidxref.com/5.1.1_r6/xref/frameworks/base/core/java/android/widget/Editor.java#3976

或者如果TextViews(EditTexts基本上是文本视图),textCanBeSelected返回false: http://androidxref.com/5.1.1_r6/xref/frameworks/base/core/java/android/widget/Editor.java#479

或者其他一些情况,但让我们从这里开始调查。

为了确保在触摸模式下没有任何关闭,你可以在一个EditText上调用isInTouchMode,它可以调用吗?

为了确保textCanBeSelected是正确的,你可以在一个EditText上调用该方法,而不调用它。

如果两者都很好,我们将不得不继续挖掘;)