AutoCompleteTextView 失去焦点的问题

发布于 2024-10-16 05:03:03 字数 132 浏览 2 评论 0原文

我的活动中有一个 AutoCompleteTextView 可以按其应有的方式执行。下拉弓显示正确的条目等。问题是当视图失去焦点时,文本不再可见。当再次获得焦点时,文本可见。

还有其他人遇到过这个问题吗?这是一个错误还是我做错了什么?

I have a AutoCompleteTextView within my activity that performs how it should. The dropdown bow is shown with correct entries etc. The problem is when the view looses focus the text is no longer visible. When focus is gained again the text is visible.

Has anyone else had this problem? Is it a bug or something I am doing wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

南风起 2024-10-23 05:03:03

也许当你不聚焦项目时,文本颜色与当前主题的背景颜色相同。所以你看不到它们,只能看到你聚焦的项目文本。

解决:针对background_color设置不同的颜色。
您可以在创建 Adapter 时使用 android.R.layout.simple_dropdown_item_1line 等,或者您自己的 textViewResourceId ,例如:

<TextView xmlns:android="http://schemas.android.com/apk/res/android"
   android:textSize="20dp"
   android:gravity="center_vertical" 
   android:id="@android:id/text1" 
   android:paddingLeft="6.0dip" 
   android:paddingRight="6.0dip" 
   android:layout_width="fill_parent" 
   android:layout_height="50.0dip"
   android:textColor="@android:color/black"
   android:textColorHighlight="@android:color/black"    />

Maybe when you don't focus the Item,TextColor is same as background color on current Theme .so you can't see them,just see the item text that you focus.

Solve : set different color against background_color.
you can use android.R.layout.simple_dropdown_item_1line and so on when you create Adapter ,or your own textViewResourceId like:

<TextView xmlns:android="http://schemas.android.com/apk/res/android"
   android:textSize="20dp"
   android:gravity="center_vertical" 
   android:id="@android:id/text1" 
   android:paddingLeft="6.0dip" 
   android:paddingRight="6.0dip" 
   android:layout_width="fill_parent" 
   android:layout_height="50.0dip"
   android:textColor="@android:color/black"
   android:textColorHighlight="@android:color/black"    />
念﹏祤嫣 2024-10-23 05:03:03

就像设置textview的textcolor一样简单,

 <AutoCompleteTextView
         android:layout_width="120dip"
         android:layout_height="wrap_content"
         android:singleLine="true"
         android:ems="10"
         android:textColor="@android:color/black" />

It's as easy as set textcolor of textview,

 <AutoCompleteTextView
         android:layout_width="120dip"
         android:layout_height="wrap_content"
         android:singleLine="true"
         android:ems="10"
         android:textColor="@android:color/black" />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文