[TIMOB-26779] Android: Ti.UI.Android.SearchView only icon responds to search
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | High |
Status | Closed |
Resolution | Fixed |
Resolution Date | 2019-03-19T18:57:39.000+0000 |
Affected Version/s | Release 7.5.0 |
Fix Version/s | Release 8.0.1 |
Components | Android |
Labels | SearchBar, android, engSchedule, parity |
Reporter | Gary Mathews |
Assignee | Gary Mathews |
Created | 2019-01-30T00:12:52.000+0000 |
Updated | 2019-03-19T18:57:39.000+0000 |
Description
- Pressing the SearchView bar does not gain focus and ability to search, only the icon responds.
*TEST CASE*
const win = Ti.UI.createWindow({ backgroundColor: 'gray' });
const search = Ti.UI.Android.createSearchView();
const table = Titanium.UI.createTableView({
data: [
Ti.UI.createTableViewRow({ title:'Apple' }),
Ti.UI.createTableViewRow({ title:'Banana' }),
Ti.UI.createTableViewRow({ title:'Orange' }),
Ti.UI.createTableViewRow({ title:'Raspberry' })
],
search: search,
searchAsChild: true
});
win.add(table);
win.open();
master: https://github.com/appcelerator/titanium_mobile/pull/10656
8_0_X: https://github.com/appcelerator/titanium_mobile/pull/10732
FR Passed. Waiting on Jenkins build.
Verified the fix on SDK 8.0.1.v20190318134648 and 8.1.0.v20190319060446. Works fine. closing.