mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
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
This commit is contained in:
committed by
Alexander Vakrilov
parent
f092a6ecae
commit
09535627b9
@@ -1,7 +1,8 @@
|
||||
<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"/>
|
||||
<Button height="50" width="100" loaded="onButtonLoaded" text="Click me 3rd (Android)" style.fontSize="8"
|
||||
recycleNativeView="false"/>
|
||||
<ListView loaded="onListViewLoaded">
|
||||
<ListView.itemTemplate>
|
||||
<StackLayout>
|
||||
|
||||
Reference in New Issue
Block a user