Faded home has come a long way from zune home which was released about 8 months ago. I highly value all the support and patience from my fan base. I do however understand why some of you are upset at realease times and even some of you that like to claim im trying to get over on you, i respect all of your opinions and even if i dont respond i read every forum post, tweet, email, and comment that you guys send. First off if you have issues with myself personally and feel i am trying to get over on you please feel free to email me and i will be glad to get it straightened out Now for some updates and info
A lot of users have noticed faded home is slower than zune home and wonder why, i mean it is just text why is it slow?
well to answer that i wanted to make the app as visually appealing as possible and to accomplish this i needed to approach the "list" idea differetly so i there fore (and this is a bit technical for anyone not familiar with android dev) abandoned the LISTVIEW object and just placed a bunch of TEXTVIEWs in a layout and move them based on touch events, now that is how i accomplished the "elastic scrolling" affect; however, that came with a trade off where the user could not start touching any text/tiles and slide because the objects used an onclick method which directly interfere with the ontouch (to put it simply the screen did not detect touching when you placed your finger on any texts or tiles) i have already come up with a workaround and am busy implimenting it so that you can scroll smoothly nomatter where you first put your finger down.
Another issue causing the slow down is the way each "page" is loaded, i realize now that it will be beneficial to load the apps page and pins page at run time and cache them for each return so you will not see that lagg every time you hit apps, and finally i also realize that using these TEXTVIEW objects can be strenuous on the phone/device when there are a lot (ie the apps list) since i dont use LISTVIEW wich takes care of all the loading of things that are visible, so im also changing the way the text is drawn on the screen from an actual object and making it something thats just draw as a string to the screen wich should SIGNIFIGANTLY improve speed and smoothness
So i am working tirelessly on getting you guys a great product thanks again for all the support and remember i WILL NOT abandon this project for any reason, You guys are my fan base and i will do whatever i can to show my appreciation!
TL: DR - Knows of issues, has a work around, and is implementing them soon.