我在代码中为视图添加android.widget.SearchView
,但我找不到如何为此设置文本颜色。
SearchView = new SearchView(getContext());
我看到有方法可以设置文本对齐方式。
我也看到我可以设置背景颜色和色调,但前景没有。
答案 0 :(得分:0)
试试这个
int id = searchView.getContext().getResources().getIdentifier("android:id/search_src_text", null,
null);
TextView textView = (TextView) searchView.findViewById(id);
textView.setTextColor(Color.WHITE);
Is it possible to change the textcolor on an Android SearchView?