SearchView 光标不可见
我的搜索视图中的光标不可见。我怎样才能让它可见?
<androidx.appcompat.widget.SearchView
android:id="@+id/edit_query"
android:layout_width="0dp"
android:layout_height="50dp"
android:background="@android:color/white"
android:ems="10"
android:importantForAutofill="no"
android:inputType="text"
android:textColor="@color/app_dark_color"
android:textStyle="bold"
app:iconifiedByDefault="false"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:queryHint="@string/search"
app:searchIcon="@drawable/ic_ricerca"
tools:ignore="LabelFor"
tools:text="Name" />
The cursor inside my searchview is not visible. how can i make it visible?
<androidx.appcompat.widget.SearchView
android:id="@+id/edit_query"
android:layout_width="0dp"
android:layout_height="50dp"
android:background="@android:color/white"
android:ems="10"
android:importantForAutofill="no"
android:inputType="text"
android:textColor="@color/app_dark_color"
android:textStyle="bold"
app:iconifiedByDefault="false"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:queryHint="@string/search"
app:searchIcon="@drawable/ic_ricerca"
tools:ignore="LabelFor"
tools:text="Name" />
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我回顾了你的问题以及我们过去遇到过的同样的问题。我们尝试过的解决方案之一解决了我们的问题。请尝试使用该解决方案,它可能会解决您的问题。
样式.xml
I reviewed your question and the same problem that we had encountered in the past. One of the solutions we have tried has resolved our problem. Please try with that solution it may solve your issue.
style.xml
解决方案:
在使用 Kotlin 在 Android 应用程序中扩展布局后,您可以按照以下方式请求 EditText 的焦点:
Solution:
Here's how you can request focus for an EditText after the layout has been inflated in your Android application using Kotlin: