更改钛中的 SearchView 提示文本和图标颜色
change SearchView hint Text and icon color in titanium
我正在使用 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,
});
如何更改钛搜索视图的提示文本和图标颜色?
我没有使用 alloy 文件夹
尝试用 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
到搜索栏。
我正在使用 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,
});
如何更改钛搜索视图的提示文本和图标颜色?
我没有使用 alloy 文件夹
尝试用 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
到搜索栏。