<EditText
android:id="@+id/searchTextView"
android:layout_width="match_parent"
android:layout_height="40dp"
android:layout_centerVertical="true"
android:layout_marginLeft="@dimen/marginSmall"
android:layout_toLeftOf="@+id/searchCloseIcon"
android:layout_toRightOf="@+id/searchIcon"
android:background="@drawable/rounded_rect_white"
android:backgroundTint="@android:color/transparent"
android:gravity="center_vertical"
android:hint=" Search Nearby Chat"
android:inputType="text"
android:lines="1"
android:maxLines="1"
android:textColor="@color/black"
android:textColorHint="@color/black38"
android:textSize="@dimen/sunheading" />
最初,我可以在edittext中看到光标,但在设置其可见性后不见了 和 再次显示其在edittext中不可见。
我可以知道可以解决这个问题的方法吗?
答案 0 :(得分:0)
设置容器可见性时,VISIBLE也会尝试将焦点请求到EditText
findViewById(R.id.searchTextView).requestFocus();
答案 1 :(得分:0)
显示光标,
android:cursorVisible="true"
android:focusable="true"
android:focusableInTouchMode="true"
并在EditText
中,使用属性:使其成为可绘制的
android:textCursorDrawable="@drawable/blue_cursor"
将android:textCursorDrawable
属性设置为@null
会导致使用android:textColor
作为光标颜色
以编程方式:
searchTextView.setCursorVisible(true);
searchTextView.requestFocus();
答案 2 :(得分:0)
机器人:textCursorDrawable =&#34; @可绘制/ color_cursor&#34;