Re: [android-developers] Re: UI like Youtube

2011-12-16 Thread Christian Eduardo Palomares Peralta
It works with a LinearLayout vertical and adding programmatically linearlayout horizontal, and also managing the scrollview =) Thxs for your answers =)!!! 2011/12/15 Kostya Vasilyev kmans...@gmail.com Looks pretty close to me. 15 декабря 2011 г. 20:08 пользователь Christian Eduardo Palomares

Re: [android-developers] Re: UI like Youtube

2011-12-15 Thread Christian Eduardo Palomares Peralta
BTW, i'm not talking about the first view in UI youtube tablet version, i think that's a 3D carousel. I'm talking about the exploratory view (second tab). 2011/12/14 Kostya Vasilyev kmans...@gmail.com As far the as the 3D panoramic scrolling goes:

Re: [android-developers] Re: UI like Youtube

2011-12-15 Thread Kostya Vasilyev
That - I mean the right part - looks like some kind of custom adapter view, maybe with view recycling (harder) maybe not (easier). 15.12.2011 12:02, Christian Eduardo Palomares Peralta пишет: BTW, i'm not talking about the first view in UI youtube tablet version, i think that's a 3D carousel.

Re: [android-developers] Re: UI like Youtube

2011-12-15 Thread Christian Eduardo Palomares Peralta
I've tried again with listview but i had some problems to load more items to the adapter. Now i'm adding the controls programmatically and i think it should work, but my only problem is detecting the scroll in the bottom to load more items :(. Thxs 2011/12/15 Kostya Vasilyev kmans...@gmail.com

Re: [android-developers] Re: UI like Youtube

2011-12-15 Thread Kostya Vasilyev
For dynamic content on the bottom, you can: - Override getView and check the item position (maybe not quite religiously pure, but it works). - Use an OnScrollListener to be notified of scroll state changes, wait for SCROLL_STATE_IDLE and check what's visible

Re: [android-developers] Re: UI like Youtube

2011-12-15 Thread Christian Eduardo Palomares Peralta
Thanks for the help, but i was talking about that in a linearlayout with a scroll view :( 2011/12/15 Kostya Vasilyev kmans...@gmail.com For dynamic content on the bottom, you can: - Override getView and check the item position (maybe not quite religiously pure, but it works). - Use an

Re: [android-developers] Re: UI like Youtube

2011-12-15 Thread Kostya Vasilyev
Um, @Override protected void onScrollChanged (int l, int t, int oldl, int oldt) ??? 15 декабря 2011 г. 19:55 пользователь Christian Eduardo Palomares Peralta palomare...@gmail.com написал: Thanks for the help, but i was talking about that in a linearlayout with a scroll view :( 2011/12/15

Re: [android-developers] Re: UI like Youtube

2011-12-15 Thread Christian Eduardo Palomares Peralta
like this??? http://www.marteinn.se/blog/?p=485 I'll try it =) 2011/12/15 Kostya Vasilyev kmans...@gmail.com Um, @Override protected void onScrollChanged (int l, int t, int oldl, int oldt) ??? 15 декабря 2011 г. 19:55 пользователь Christian Eduardo Palomares Peralta

Re: [android-developers] Re: UI like Youtube

2011-12-15 Thread Kostya Vasilyev
Looks pretty close to me. 15 декабря 2011 г. 20:08 пользователь Christian Eduardo Palomares Peralta palomare...@gmail.com написал: like this??? http://www.marteinn.se/blog/?p=485 I'll try it =) 2011/12/15 Kostya Vasilyev kmans...@gmail.com Um, @Override protected void onScrollChanged

[android-developers] Re: UI like Youtube

2011-12-14 Thread Ali Chousein
Mine is just a guess but YouTube might be using HTML5. - Ali Chousein Weather-Buddy http://weatherbuddy.blogspot.com | http://twitter.com/weather_buddy Geo-Filtered Assistant http://geo-filtered-assistant.blogspot.com

Re: [android-developers] Re: UI like Youtube

2011-12-14 Thread Kostya Vasilyev
As far the as the 3D panoramic scrolling goes: http://android-developers.blogspot.com/2011/02/introducing-renderscript.html Renderscript has been used in the creation of the new visually-rich YouTube and Books apps. -- Kostya 15 декабря 2011 г. 2:57 пользователь Ali Chousein