別のビューに SearchView を追加したい。ActionBar に配置できません (ネイティブの actionBar を非表示にして、代わりにカスタム ビューを作成します)。
View に追加してsearch:searchBarを TableView に設定すると、アプリがクラッシュします。
私は Appcelerator Studio を使用し、プラットフォームは Android です
私が使用するコードは次のとおりです。
var searchBar = Ti.UI.createSearchBar({
hintText:"",
color:"#000000",
barColor:"#eaeaea",
height:40,
borderColor:"#ffffff",
backgroundColor:"#ffffff",
showCancel:false
});
var prevadzkyListView = Ti.UI.createListView({
top:55,
templates:{'simple':cTemplate},
separatorStyle:1,
width:width,
height:height-80,
backgroundColor: 'transparent',
editing: false,
moving: false,
visible: true,
scrollable:true,
searchView:searchBar,
resultsBackgroundColor: "#c0392b",
});