Closed nuno closed 7 years ago
OK, it is possible to realize. Look to my tutorial. https://github.com/AppWerft/TitaniumAndroidModuleDevelopment/blob/master/04-WaterWaveProgress.md
I'll take a look 😉
@hansemannn You the man!
Basically what you guys need is to use ENSURE_UI_THREAD
in some places for the correct threading behavior, especially for UI-related manipulations. And you use some mutex locks (pthread_mutex
) that can cause problems across some places when running on main thread.
You can search the Titanium Core for ENSURE_UI_THREAD
and TI_USE_KROLL_THREAD
to see where and how we use those. Not sure when I will find time for a closer look, so this should guide you in the correct direction.
Thank you for your time @hansemannn !
Will look into it this week. What else are critical iOS issues in here? A prioritized list would be cool. Thanks!
EDIT: Playing around in https://github.com/nuno/TiCollectionView/pull/66
I Have a few things yeah. I will put in list. One think I want this module be able to do is change the layout on the fly, ex, like pinterest
You have list of grid-layout, then you click one grid and change to horizontal-layout (kinda of scrollableView) that you can swipe to one by one item.
Now this layout config is manually and is I think on creation only.
The example works using #66, please try it out!
If we usetrue in tiapp.xml the module unfortunately it does not work. @mpociot @viezel @adesugbaa Any help is appreciated!