SearchView 光标不可见

发布于 2025-01-13 07:39:04 字数 713 浏览 0 评论 0原文

我的搜索视图中的光标不可见。我怎样才能让它可见?

<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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

悲欢浪云 2025-01-20 07:39:04

我回顾了你的问题以及我们过去遇到过的同样的问题。我们尝试过的解决方案之一解决了我们的问题。请尝试使用该解决方案,它可能会解决您的问题。

<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="#ff0000"    
android:textStyle="bold"    
app:iconifiedByDefault="false"    
app:layout_constraintEnd_toEndOf="parent"    
app:layout_constraintStart_toStartOf="parent"    
app:layout_constraintTop_toTopOf="parent"
app:queryHint="Search"
tools:ignore="LabelFor"
android:theme="@style/searchViewTheme"
tools:text="Name" />

样式.xml

    <style name="searchViewTheme"parent="Theme.MaterialComponents.DayNight.DarkActionBar">
    <item name="colorControlActivated">@android:color/holo_orange_dark</item>
</style>

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.

<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="#ff0000"    
android:textStyle="bold"    
app:iconifiedByDefault="false"    
app:layout_constraintEnd_toEndOf="parent"    
app:layout_constraintStart_toStartOf="parent"    
app:layout_constraintTop_toTopOf="parent"
app:queryHint="Search"
tools:ignore="LabelFor"
android:theme="@style/searchViewTheme"
tools:text="Name" />

style.xml

    <style name="searchViewTheme"parent="Theme.MaterialComponents.DayNight.DarkActionBar">
    <item name="colorControlActivated">@android:color/holo_orange_dark</item>
</style>
左秋 2025-01-20 07:39:04

解决方案:

在使用 Kotlin 在 Android 应用程序中扩展布局后,您可以按照以下方式请求 EditText 的焦点:

binding?.editTextInput?.post {
   editTextInput.requestFocus()
}

Solution:

Here's how you can request focus for an EditText after the layout has been inflated in your Android application using Kotlin:

binding?.editTextInput?.post {
   editTextInput.requestFocus()
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文