我將android.widget.SearchView
添加到代碼中的視圖中,但找不到如何爲此設置文本顏色。設置android.widget.SearchView的文本顏色
SearchView = new SearchView(getContext());
我看到有方法來設置文本的對齊和方向。
我也看到,我可以設置背景顏色和色調,但沒有前景。
我將android.widget.SearchView
添加到代碼中的視圖中,但找不到如何爲此設置文本顏色。設置android.widget.SearchView的文本顏色
SearchView = new SearchView(getContext());
我看到有方法來設置文本的對齊和方向。
我也看到,我可以設置背景顏色和色調,但沒有前景。
嘗試這個
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?
不是我理想的解決方案,因爲它感覺像一個黑客,但我現在要去它 – 2014-10-27 12:38:28
你可以給我你的郵件ID – 2014-10-27 12:39:34
http://stackoverflow.com/questions/16923442/text-color-of-searchview-in-actionbar-with-actionbarsherlock – 2014-10-27 12:11:18
@NaveenTamrakar這不是在一個操作欄 – 2014-10-27 12:12:06
http://stackoverflow.com/questions/11321129/is-it-possible-to-change-the-textcolor-on-an-android-searchview – 2014-10-27 12:18:36