Re: [android-developers] Re: Traslate Animation in ListView (like Google Plus App)

2013-04-26 Thread Gianluca Cacace
Cacace* Tel.: (+39) 340 5029624 http://www.linkedin.com/in/gcacace 2013/4/23 dman65 darr...@exquisiteimages.com On Thursday, February 7, 2013 9:16:59 AM UTC-5, Gianluca Cacace wrote: Has anyone idea to how to replicate the Google Plus listview behaviour, when scrolling down the list? I want

[android-developers] Traslate Animation in ListView (like Google Plus App)

2013-02-07 Thread Gianluca Cacace
Has anyone idea to how to replicate the Google Plus listview behaviour, when scrolling down the list? I want that each new cell is traslating from the bottom to it's final position smoothly. -- -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] ListFragment and savedInstanceState, how to preserve state correctly

2012-12-17 Thread Gianluca Cacace
I'm using a custom ListFragment to load asyncronusly json data and show it. When I click on a row, the fragment is detached and added to the back stack, and a new fragment is loaded to show details about the row selected. When the user press the back button, the listfragment is correctly popped

[android-developers] Avoid OutOfMemory Exception using FragmentManager BackStack

2012-12-17 Thread Gianluca Cacace
I'm developing a native app, using fragments like facebook. I've only 1 activity with a top fixed bar and a fragment container below it. When I navigate into the app, fragments are added to the back stack (like Facebook app), and when I press back button, they are popped rightly. But I noticed

[android-developers] ActionBar overlay enable programmatically

2012-10-23 Thread Gianluca Cacace
If you see the new YouTube app, while you're watching a video in portrait mode, the actionbar is not in overlay mode. But when the screen rotates in landscape, the video is under the actionBar, so the actionbar is in overlay mode. I can't change this mode after setContentView. But I tried to

Re: [android-developers] ActionBar overlay enable programmatically

2012-10-23 Thread Gianluca Cacace
Is it possible to don't interrupt the video playback during rotation, changing a orientation-specific resource/style? Il giorno martedì 23 ottobre 2012 15:30:34 UTC+2, Kostya Vasilyev ha scritto: Perhaps they use orientation-specific resources / styles? 2012/10/23 Gianluca Cacace gianluc

[android-developers] View.OnClickListener without default click sound

2012-10-15 Thread Gianluca Cacace
How to disable the default system click sound when a view is tapped? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

[android-developers] How YouTube app change views or fragments

2012-09-24 Thread Gianluca Cacace
I've noticed that the YouTube app for ICS/JB doesn't open a new activity when you select an item from the left side menu. How can I implement this behaviour? I've alredy implemented a slidemenu, but what I've to do when an item from the menu is selected? -- You received this message because

[android-developers] Request authentication, then return to the specific action

2012-09-17 Thread Gianluca Cacace
I see that apps like YouTube, when you're not logged in and you try to do an action that requires to be logged, appears a login activity. Then, when you've completed the login, the app returns to the previous activity, executing exactly what you wanted to do before. Are they using

[android-developers] Custom ActionBar Popup (like QuickContactBadge)

2012-08-30 Thread Gianluca Cacace
Is there any library or Android Widget to have this behaviour when I click on an ImageView? See image attached: https://lh3.googleusercontent.com/-CRmHY6sx-FE/UD8079LIWTI/CIs/m7MKPdoS1yM/s1600/device-2012-08-30-113019.png -- You received this message because you are subscribed to the

[android-developers] Best practice to load images from disk/url into a listview

2012-08-29 Thread Gianluca Cacace
I've build an activity with a Listview like Youtube app's my Videos. All images are taken from disk or using a built-in video-thumbnail generator (if not exist a cached file). I've noticed that this method that I use is really slow (I don't know how Youtube load this listview). Besides, when I

[android-developers] Show a producer-consumer queue inside a Listview

2012-08-26 Thread Gianluca Cacace
I've a service which consume some tasks queued by an activity (this service uploads each queued video to a http server). I want to show the upload status in an activity (with a listview, like Youtube). What can I do to keep in sync the listview with the service progress? I don't know if it's a

[android-developers] Best practice to implement a HTTP video upload queue like YouTube App

2012-08-24 Thread Gianluca Cacace
I'm trying to find the best way to develop a HTTP queue which uploads videos using HTTP POST, with progress indicator in a listview or notification. I'm developing with ICS. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] Re: Best practice to implement a HTTP video upload queue like YouTube App

2012-08-24 Thread Gianluca Cacace
I'm actually using a BlockingQueue but I've also to manage the feature to remove an arbitrary object from the queue or from the current upload (object picked from the head of the queue). Il giorno giovedì 23 agosto 2012 12:32:59 UTC+2, Gianluca Cacace ha scritto: I'm trying to find the best