2

因此,我希望用户能够在我设置为图像视图的图像上键入内容。图像已设置并且可以正常工作。当用户单击图像时,编辑文本框会显示在他们单击的位置。但是编辑文本的白色背景会阻止背景中的图像。因此,我将编辑文本背景设置为透明:

    editTextOne.setBackgroundColor(Color.TRANSPARENT);

这适用于使编辑文本背景透明。但是,现在光标也不会显示,除非开始键入。

那么,我要问的是是否有任何方法可以使 EditText 背景透明但仍然显示光标并闪烁?任何帮助将不胜感激,谢谢!

代码:

    public boolean onTouch(View view, MotionEvent event){
            if (type == true){
                touchX = (int) event.getX();
                touchY = (int) event.getY();
                RelativeLayout.LayoutParams params = (RelativeLayout.LayoutParams) editTextOne.getLayoutParams();
                params.leftMargin = touchX;
                params.topMargin = touchY;
                params.addRule(RelativeLayout.ALIGN_PARENT_TOP);
                params.addRule(RelativeLayout.ALIGN_PARENT_LEFT);
                editTextOne.setLayoutParams(params);
                editTextOne.setVisibility(View.VISIBLE);
                editTextOne.bringToFront();
                editTextOne.setBackgroundColor(Color.TRANSPARENT);
                editTextOne.requestFocus();
                editTextOne.setCursorVisible(true);
            }//end of if statement
            return true;
        }//end of onTouch

XML:

  <?xml version="1.0" encoding="utf-8"?>
  <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:id="@+id/relative" >

<Button
    android:layout_height="wrap_content"
    android:layout_width="wrap_content"
    android:layout_toLeftOf="@+id/load"
    android:layout_alignParentBottom="true"
    android:layout_margin="10dp"
    android:text="C"
    android:textStyle="bold"
    android:textSize="20dp"
    android:id="@+id/camera"
    android:onClick="camera"/>

<Button
    android:layout_height="wrap_content"
    android:layout_width="wrap_content"
    android:layout_toLeftOf="@+id/view"
    android:layout_alignParentBottom="true"
    android:layout_margin="10dp"
    android:id="@+id/load"
    android:text="L"
    android:textStyle="bold"
    android:textSize="20dp"
    android:onClick="load"/>

<Button
    android:layout_height="wrap_content"
    android:layout_width="wrap_content"
    android:layout_alignParentRight="true"
    android:layout_alignParentBottom="true"
    android:layout_margin="10dp"
    android:text="v"
    android:id="@+id/view"
    android:textStyle="bold"
    android:textSize="20dp"
    android:onClick="view"/>

<Button 
    android:layout_height="wrap_content"
    android:layout_width="wrap_content"
    android:layout_toLeftOf="@+id/camera"
    android:layout_alignParentBottom="true"
    android:layout_margin="10dp"
    android:text="T"
    android:textStyle="bold"
    android:textSize="20dp"
    android:id="@+id/text"
    android:onClick="text"/>

<TextView 
    android:layout_height="wrap_content"
    android:layout_width="wrap_content"
    android:background="@null"
    android:visibility="invisible"
    android:id="@+id/textone"/>

<EditText
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:visibility="invisible"
    android:inputType="textAutoCorrect"
    android:singleLine="true"
    android:id="@+id/edittextone"/>

<ImageView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerInParent="true"
    android:id="@+id/picture"/>

</RelativeLayout>  

编辑:我不确定为什么光标不会立即显示,但我发现一旦按下空格键就可以看到光标。所以,为了解决我的问题,我使用了:

     editTextOne.setText(" ");

这会放置一个空格作为初始文本,因此会显示光标。我希望这可以帮助其他遇到类似问题的人。

4

3 回答 3

1

您可以在 xml 文件中更改 editext 属性android:background="@null",而不是在代码文件中设置,这对我有用。我希望它对你有用。

于 2012-10-26T00:54:37.590 回答
1

首先,我想确保您要更改光标颜色。是吗 ?

为了那个原因 :

  • 更改您的最低 api(如果 api < 3.2 )。

  • 设置为android api 3.2 或更高版本。

  • 您将在 EditText 中获得属性,设置为android:textCursorDrawable="@null"

  • 更改您的 text:color ,这也将设置光标的颜色与文本颜色相同。

只会在您的最低 api 级别为 3.2 时对您有所帮助,否则不会。

于 2012-10-26T07:46:53.083 回答
0

您是否尝试过手动将焦点设置到文本视图?显示视图后,您可以尝试调用requestFocus()吗?

此外,您可以尝试通过setCursorVisible方法将光标显式设置为可见。

于 2012-10-26T00:41:50.550 回答