搜索查看蜂窝
如何更改搜索小部件文本的颜色
<item android:id="@+id/menu_search"
android:title="Search"
android:icon="@drawable/ic_menu_search"
android:showAsAction="ifRoom"
android:textColor="@color/black" <---- this does not work.
android:actionViewClass="android.widget.SearchView" />
我创建了自己的视图,但它看起来很糟糕,有没有办法覆盖文本颜色。
或者你知道这个小部件的源代码/GIT 在哪里吗?谷歌没有为我做这件事:)
How do I change the color of a search widget's text
<item android:id="@+id/menu_search"
android:title="Search"
android:icon="@drawable/ic_menu_search"
android:showAsAction="ifRoom"
android:textColor="@color/black" <---- this does not work.
android:actionViewClass="android.widget.SearchView" />
I created my own view but it looked terrible, is there a way to override text color.
Or do you know where the source/GIT of this widget is. Google did not do it for me :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
我不认为你可以自定义 searchView 内的文本。您必须设置 searchView 本身的颜色。
Try this :
I don't think you can customize the text inside the searchView. You would have to set the color of the searchView itself.