Re: [android-developers] setLayoutParams stops working

2013-07-03 Thread Wyler Yerrachione
right, so using an animation is another approach I have notes about. The idea there is to use a Scroller to perform callback animating for the various changes that are needed as the scroll happens, right? The things is, it's not like I have any issues with the current approach, except that

[android-developers] Service is restarted after ANR, OutOfMemoryError, native crashes, etc inspite of Service.START_NOT_STICKY

2013-07-03 Thread Johan Appelgren
Do you bind to the service? -- -- 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] Viewport in meta Tag

2013-07-03 Thread Arun Kumar K
view port is not support for android web view.can any one help me -- *Regards* *Arun* -- -- 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

[android-developers] GamesClient.Builder NoClassDefFoundError in runtime

2013-07-03 Thread Davide Moriello
Hi everyone. I'm trying to implement google play services in my new game for android. I have this code for init GamesClient mGamesClient = new GamesClient.Builder(context, connectedListener(), connectionFailedListener()) .setGravityForPopups(Gravity.TOP | Gravity.CENTER_HORIZONTAL)

[android-developers] WebView can not login into a http website with login. Phone navigator can do it

2013-07-03 Thread saex
I need to show a webview that let the user enter this website: http://m.orange.es/area_clientes/ If i try to enter to that website and login with my user with the phone navigator, it works fine, and the navigator ask me to accept a certificate. If i try to enter that website and login with

Re: [android-developers] Viewport in meta Tag

2013-07-03 Thread Jayu Sagar
WebView in android supports ViewPort.. where are you facing problems? On Wed, Jul 3, 2013 at 2:13 PM, Arun Kumar K arunkuma...@npcompete.netwrote: view port is not support for android web view.can any one help me -- *Regards* *Arun* -- -- You received this message because you are

Re: [android-developers] i want my app to pick images from gallery according to date and time it was clicked(acc to timestamp)

2013-07-03 Thread Michael Banzon
Start here: http://developer.android.com/guide/components/index.html On Wed, Jul 3, 2013 at 5:28 AM, siter sahilsachdeva2...@gmail.com wrote: i want my app to pick images from gallery according to date and time it was clicked(acc to timestamp)...older photos should come first can u please

[android-developers] APK Re-Install Won't Clear Data

2013-07-03 Thread Cayce
Hey; I'm developing an app that is a shell in which a user will purchase and load business information from 29 separate, purchasable regions in the US. These regions are database driven, and I'm still modifying the database for 2014 data. This is a test environment. The problem I'm having is

[android-developers] Re: APK Re-Install Won't Clear Data

2013-07-03 Thread Jonathan S
Did you hard-coded outside of data directory? On Wednesday, July 3, 2013 2:40:00 PM UTC-4, Cayce wrote: Hey; I'm developing an app that is a shell in which a user will purchase and load business information from 29 separate, purchasable regions in the US. These regions are database

[android-developers] USBConnection: bulkTransfer OUT = after sending 10-15 x Data's every 4 seconds = USB is disconnected, every time.

2013-07-03 Thread AndroidYourself
I have a problem, I've connected an USB CSR BT Dongle to my Acer A210 Android Device and all is working fine, I can receive endless data without problems. And also I can send Data with USB bulkTransfer successfully: int send = usbConnection.bulkTransfer(usbEndpointOUT, buf, buf.length, 1);

[android-developers] Re: USB Host bulk transfer returning -1 on read, data IS available

2013-07-03 Thread AndroidYourself
same here. -- -- 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+unsubscr...@googlegroups.com For more

[android-developers] how to fire intent when net is connected

2013-07-03 Thread Sadhna Upadhyay
Hi guys, i am creating a app in which i have to email and the issue is this that mail should be send whenever net is connected,even application has been exit. may be some gramatical here please ignore that and please help me -- -- You received this message because you are subscribed to

Re: [android-developers] how to fire intent when net is connected

2013-07-03 Thread vinay kumar
Hi Sadhna, To fire an Intent when net is connected You might need to consider using a BroadcastReceiver for android.net.conn.CONNECTIVITY_CHANGE instead. To send an email when ever the net is connected. Probably you want to send the email without user interaction. This can't be achieved with