如何删除edittext光标闪烁?

时间:2017-02-01 10:26:43

标签: android android-edittext

我在edittext中面临这个问题,我的活动中有四个edittext和一个微调器,当查看活动时,自动闪烁的光标在我的活动的第三个edittext中闪烁。如何删除自动闪烁在编辑文本中,当点击edittext时,应该可以看到闪烁的光标。还要回答为什么会出现这个问题。

以下布局是activity_main.xml

 <RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="200dp"
    android:layout_marginLeft="10dp">


    <RelativeLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="5dp"
        android:background="@drawable/textinput">

    <Spinner
        android:layout_width="match_parent"
        android:layout_height="30dp"
        android:layout_alignParentTop="true"
        android:layout_marginRight="10dp"
        android:layout_marginTop="0dp"
        android:id="@+id/spinner2"
        android:text="@string/inheritance"
        android:prompt="@string/inheritance"
        android:textSize="15dp"
        android:popupBackground="@drawable/textinput"/>

    </RelativeLayout>
    <EditText
        android:layout_width="match_parent"
        android:layout_height="30dp"
        android:inputType="textPersonName"
        android:hint="@string/location"
        android:ems="10"
        android:layout_centerVertical="true"
        android:layout_marginRight="10dp"
        android:layout_marginTop="10dp"
        android:textSize="15dp"
        android:id="@+id/yourLocation_editText"
        android:background="@drawable/textinput"
        android:typeface="sans" />

    <EditText
        android:layout_width="match_parent"
        android:layout_height="30dp"
        android:inputType="textPersonName"
        android:hint="@string/scammer_location"
        android:ems="10"
        android:layout_marginTop="10dp"
        android:textSize="15dp"
        android:id="@+id/editText7"
        android:layout_below="@+id/yourLocation_editText"
        android:layout_marginRight="10dp"
        android:background="@drawable/textinput"
        android:typeface="sans"/>

    <EditText
        android:layout_width="match_parent"
        android:layout_height="30dp"
        android:inputType="textPersonName"
        android:hint="@string/keyWord"
        android:ems="10"
        android:id="@+id/editText8"
        android:background="@drawable/textinput"
        android:layout_below="@+id/editText7"
        android:layout_marginRight="10dp"
        android:layout_marginTop="10dp"
        android:textSize="15dp"
        android:typeface="sans"/>

    <EditText
        android:layout_width="match_parent"
        android:layout_height="30dp"
        android:inputType="phone"
        android:ems="10"
        android:id="@+id/phoneNumber_editText"
        android:hint="@string/phonenumber"
        android:textSize="15dp"
        android:background="@drawable/textinput"
        android:layout_above="@+id/yourLocation_editText"
        android:layout_marginRight="10dp"
        android:typeface="sans"/>


</RelativeLayout>

0 个答案:

没有答案