Files
NativeScript/apps/app/ui-tests-app/issues/issue-2942.xml
Hristo Hristov 09535627b9 disable recycling on specific button (#4527)
* disable recycling on specific button
add more thorough test for view recycling
fix memory leak with android ActionBar
improve padding reset when view is recycled
improve reset of several controls

* stopping local animations when view is recycled
fix tns-ios version in tests/package.json

* Fix isClickable on android when reusing nativeView
2017-07-11 09:48:08 +03:00

15 lines
602 B
XML

<Page xmlns="http://schemas.nativescript.org/tns.xsd">
<StackLayout>
<Button height="50" width="100" text="hide keyboard" onTap="hideKeyboard" style.fontSize="8"/>
<Button height="50" width="100" loaded="onButtonLoaded" text="Click me 3rd (Android)" style.fontSize="8"
recycleNativeView="false"/>
<ListView loaded="onListViewLoaded">
<ListView.itemTemplate>
<StackLayout>
<TextField text="Click me 1st"/>
<TextField text="Click me 2nd" keyboardType="number"/>
</StackLayout>
</ListView.itemTemplate>
</ListView>
</StackLayout>
</Page>