例如,我可以设置样式parent="@style/Theme.AppCompat.Light.DarkActionBar"
或parent="Theme.AppCompat.Light.DarkActionBar"
两者似乎都有效。
是否需要@style/
?在什么情况下他们是必要的?
答案 0 :(得分:0)
是的,这是必要的,但最好使用$("#tags").autocomplete({
source: function (request, response) {
$.get("http://autocomplete.wunderground.com/aq?", {
query: request.term
}, function (data) {
response($.map(results, function (data) {
return {
label: data.name,
value: data.value
}
}));
}});
,因为它继承自Material并为您提供向后兼容性。