我想更改 ActionBarSherlock 中文本的颜色SearchView
,所以我在 StackOverflow 上找到了这个:
AutoCompleteTextView searchText = (AutoCompleteTextView) searchView.findViewById(R.id.abs__search_src_text);
searchText.setHintTextColor(getResources().getColor(R.color.white));
searchText.setTextColor(getResources().getColor(R.color.white));
但问题是它searchText
始终为空。我也尝试过search_src_text
(no abs__
) - 再次searchText
是null
.
我将 Sherlock 用于我的 ActionBar(具有操作栏的自定义视图),但我也希望更改搜索视图的文本颜色。
有什么我不明白的吗?