我使用Android的搜索视图但是当搜索视图为空时很难看到搜索的图标。所以现在很难为用户提供什么样的盒子,因为图标是白色的,背景颜色几乎相同。
这是我的搜索视图:
var search = Ti.UI.Android.createSearchView({
top : (deviceHeight * 0.095) + 10,
width : 300,
height : 43,
hintText : "Table Search",
color : 'black',
borderColor : 'black',
borderRadius : 3,
});
如何更改钛中搜索视图的提示文字和图标颜色?
我没有使用合金文件夹
答案 0 :(得分:1)
尝试Ti.UI.createSearchBar
代替Ti.UI.Android.createSearchView
var search = Ti.UI.createSearchBar({
top : '100dp',
width : '300dp',
height : '43dp',
hintText : "Table Search",
hintTextColor : 'red',
color : 'black',
borderColor : 'black',
borderRadius : 3,
// value : 'def'
});
Window.add(search);
在此,您可以向搜索栏提供hintTextColor
。