Re: [android-developers] How to sync development projects?

2012-12-17 Thread Piren
Ahh... you're doing exactly the same thing with the synced folder... Go home, do an Update. Go to the airport, do all the changes (to your heart's content :-P) then when you go home, Commit. Exact same process as you do now days, but without losing versioning. It feels like we're not on the

Re: [android-developers] How to sync development projects?

2012-12-17 Thread Piren
Just another comment to make the point clear - When you Checkout a project from SVN, you basically set up a synced offline folder on your computer with that specific version of the files (usually the latest unless chosen otherwise)... So SVN is in it's core pretty much the exact same thing as

Re: [android-developers] How to sync development projects?

2012-12-17 Thread Nikolay Elenkov
On Mon, Dec 17, 2012 at 5:37 PM, Piren gpi...@gmail.com wrote: Just another comment to make the point clear - When you Checkout a project from SVN, you basically set up a synced offline folder on your computer with that specific version of the files (usually the latest unless chosen

Re: [android-developers] give uniform variables an initial value

2012-12-17 Thread Piren
Code conventions are what they are called - conventions. You dont HAVE to follow them, it's just a guideline so different developers can work together easily. On some occasions, you can actually make some conventions break compilation... the java compiler can be set with flags determining how

[android-developers] Re: layout overlays

2012-12-17 Thread Piren
Either just surround your normal layout with a FrameLayout and then do the hints as the second child (above the first layout, you'd also have to catch all touch events) or just create a new activity on top of it. if the activity has a transparent background in it's theme, it will look like an

[android-developers] Asynchronous Http server in android

2012-12-17 Thread Archana
Hi, I m implementing an asynchronous HTTP server in Android. I am using the code from link http://hc.apache.org/httpcomponents-core-ga/examples.html(Asynchronous HTTP server).. While compiling it I am getting the following error and application crashes:

[android-developers] Re: Confusion InAppBilling V3

2012-12-17 Thread Piren
you should look at both.. one just shows you exactly what you need for the billing to work, the other is a complete example of how to do an app with in app billing from scratch. On Monday, December 17, 2012 7:47:42 AM UTC+2, Rishabh Agrawal wrote: I am implementing App Billing V3 in My

Re: [android-developers] How to sync development projects?

2012-12-17 Thread Piren
well... he is using shared offline folders now :-P On Monday, December 17, 2012 10:46:04 AM UTC+2, Nikolay Elenkov wrote: On Mon, Dec 17, 2012 at 5:37 PM, Piren gpi...@gmail.com javascript: wrote: Just another comment to make the point clear - When you Checkout a project from SVN,

[android-developers] shoeboxed? wtf?

2012-12-17 Thread Piren
Am i the only one that keeps getting an email from some site named Shoeboxed every time i post to this group? -- 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

[android-developers] about gtalk service and Google's winter cleaning

2012-12-17 Thread alex kyo
Hi everyone! Google has announced a winter cleaning recently. http://googleblog.blogspot.jp/2012/12/winter-cleaning.html They only support those for business, government and education use from 20130130. As far as I know, Google sync android devices via C2DM and local Gtalk service. e.g. You

[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] Re: Bug in Google Play store app - it often closes itself after being launched by third-party app

2012-12-17 Thread Zsolt Vasvari
There is a bug in the Google Play store app, but I wasn't sure where to report it. Definitely not here. Hint: Search for Android bug database and the first result will take you to the right place. -- You received this message because you are subscribed to the Google Groups Android

Re: [android-developers] Re: Identifying HTTP Get requests in Android

2012-12-17 Thread Archana
Hi, Seems like org.apache.http.nio.protocol.HttpAsyncService does not exist in Android. Can anybody suggest me how to make my HTTP Server asynchronous? Any help is appreciated. Thanks in advance! On Friday, December 14, 2012 8:56:05 AM UTC+2, Archana wrote: Hi Kris, Can I use

Re: [android-developers] Re: Identifying HTTP Get requests in Android

2012-12-17 Thread skink
Archana wrote: Hi, Seems like org.apache.http.nio.protocol.HttpAsyncService does not exist in Android. Can anybody suggest me how to make my HTTP Server asynchronous? Any help is appreciated. Thanks in advance! quoting Kris: But if you insist that your app is special, the common

Re: [android-developers] Re: Identifying HTTP Get requests in Android

2012-12-17 Thread Archana
Hi, Is it like having separate thread for each request(GET/POST/DELETE) ? Can you please explain? I was also thinking of AsyncTask, message queue or multithreading. Thanks! On Monday, December 17, 2012 1:28:25 PM UTC+2, skink wrote: Archana wrote: Hi, Seems like

Re: [android-developers] Re: Identifying HTTP Get requests in Android

2012-12-17 Thread skink
Archana wrote: Hi, Is it like having separate thread for each request(GET/POST/DELETE) ? yes pskink -- 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

[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] Re: Asynchronous Http server in android

2012-12-17 Thread b0b
You probably need to repackage the org.apache.* jars in a new package name with a tool like jarjar, because some clases will be clashing with same class part of Android. You can thank Google for that for putting some Apache classes in the official API while this should have been left separate.

Re: [android-developers] Mobile network idle sockets disconnected

2012-12-17 Thread Goncalo Oliveira
Thanks again for the feedback Robert. I'm sending a heartbeat package but an answer is given. Though, I'm only sending the heartbeat every 30 minutes. Well, currently I'm doing less than that, but only as a workaround for this problem. For the test in case, I'm not even sending data. I'm just

[android-developers] Re: Asynchronous Http server in android

2012-12-17 Thread Archana
Hi, Just realized that *org.apache.http.nio *is not available in Android :( Now I am planning to use multi threading for asynchronous behavior. On Monday, December 17, 2012 1:57:16 PM UTC+2, b0b wrote: You probably need to repackage the org.apache.* jars in a new package name with a tool

Re: [android-developers] Mobile network idle sockets disconnected

2012-12-17 Thread Goncalo Oliveira
Robert, isn't there any way to override the data stall detector behavior? or at least change the default value? On 17 December 2012 12:02, Goncalo Oliveira gonc...@minkan.net wrote: Thanks again for the feedback Robert. I'm sending a heartbeat package but an answer is given. Though, I'm only

[android-developers] How to upload to a webserver simple integer variable from android?

2012-12-17 Thread Antonis Kanaris
How to upload to my webserver a simple integer variable from android?I want send the temperature variable.My server support php.Need permisions from webserver? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] Re: layout overlays

2012-12-17 Thread dashman
Actually I need a RelativeLayout. Also - my main issue was covering the ActionBar. Beuler? -- 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] Dynamically selecting Map API version

2012-12-17 Thread lbendlin
Our application is using the Google Maps API v1 (and also the static map API due to the limitations of MapView), but it is not the main feature of the app. Most of the time we are running in the background and are bothering the user with audio and toasts. So while I welcome the new Map API v2

Re: [android-developers] Dynamically selecting Map API version

2012-12-17 Thread Mark Murphy
On Mon, Dec 17, 2012 at 7:45 AM, lbendlin l...@bendlin.us wrote: Our application is using the Google Maps API v1 (and also the static map API due to the limitations of MapView), but it is not the main feature of the app. Most of the time we are running in the background and are bothering the

[android-developers] Re: How to upload to a webserver simple integer variable from android?

2012-12-17 Thread Alaeddine MELLITI
You can send the variable you wish in post http request for example and in the server side you can handle it as you wish Le lundi 17 décembre 2012 13:26:18 UTC+1, Antonis Kanaris a écrit : How to upload to my webserver a simple integer variable from android?I want send the temperature

[android-developers] Re: layout overlays

2012-12-17 Thread Piren
RelativeLayout, FrameLayout.. same thing. You should probably re-read the information on ActionBar if you want to accomplish what you want.. they explain it clearly how you can handle it in a way that other layouts can use the same area http://developer.android.com/guide/topics/ui/actionbar.html

[android-developers] In-app purchase: Connection between merchant console and app?

2012-12-17 Thread Keith Wiley
The merchant console offers two ways to undo an order. You can cancel entire order or you can refund some money, that letter often being disabled or otherwise unavailable on recent purchases. When the developer/seller uses each of these options, what should be the corresponding signal back to

Re: [android-developers] Mobile network idle sockets disconnected

2012-12-17 Thread Goncalo Oliveira
Robert, some more information that might be relevant. As I told you, I was using a sim card that connects through our own APN, that restricts access to our servers. Today I decided to try the same scenario with a different SIM, so I plugged a generic 3G sim card, without the APN restrictions. The

[android-developers] How use and call AsyncTask into my code for upload data?

2012-12-17 Thread Antonis Kanaris
How use and call AsyncTask into my code for upload data? ListNameValuePair nameValuePairs = new ArrayListNameValuePair(2); //you should put here your temp variable nameValuePairs.add(new BasicNameValuePair(temperature, String.valueOf(30))); HttpPost request =

[android-developers] Re: layout overlays

2012-12-17 Thread dashman
yes i agree. thanks. On Monday, December 17, 2012 8:32:49 AM UTC-5, Piren wrote: RelativeLayout, FrameLayout.. same thing. You should probably re-read the information on ActionBar if you want to accomplish what you want.. they explain it clearly how you can handle it in a way that other

Re: [android-developers] Oauth2 'Signing In' screen

2012-12-17 Thread Spiral123
Thanks Greg. those links look really useful for authenticating to non-Google services but I want to use Google Play Services and the utility methods in GoogleAuthUtil because I'm guessing that users are going to become more familiar with the standard Google authentication dialogs going

Re: [android-developers] Mobile network idle sockets disconnected

2012-12-17 Thread Robert Greenwalt
If you have root you can alter the global settings database (DATA_STALL_ALARM_AGRESSIVE_DELAY_IN_MS, DATA_STALL_ALARM_NON_AGGRESSIVE_DELAY_IN_MS). On Mon, Dec 17, 2012 at 4:22 AM, Goncalo Oliveira gonc...@minkan.netwrote: Robert, isn't there any way to override the data stall detector

Re: [android-developers] How to sync development projects?

2012-12-17 Thread TreKing
On Mon, Dec 17, 2012 at 2:33 AM, Piren gpi...@gmail.com wrote: It feels like we're not on the same page as to how SVN works... Apparently not, lol the files you Checkout are not stored in the cloud, you dont need any connection to the repository when you're doing doing any actions against

[android-developers] GL_REPEAT blues

2012-12-17 Thread bob
Any ideas why this line would cause an error? GLES20.glTexParameteri(GL_TEXTURE_EXTERNAL_OES, GLES20.GL_TEXTURE_WRAP_S, GLES20.GL_REPEAT); My video texture is getting clamped, but I want it to repeat for an effect. The error this causes is weird: 12-17 10:22:44.075:

[android-developers] Re: IBM Worklight

2012-12-17 Thread bob
*The IBM Worklight Developer Edition is a self-contained, easy-to-install plugin for the Eclipse IDE. While IBM Worklight Enterprise and Consumer Editions consist of separate development environment and server components, the Developer Edition packages them into a single Eclipse download

Re: [android-developers] shoeboxed? wtf?

2012-12-17 Thread TreKing
On Mon, Dec 17, 2012 at 2:59 AM, Piren gpi...@gmail.com wrote: Am i the only one that keeps getting an email from some site named Shoeboxed every time i post to this group? Nope... - TreKing

Re: [android-developers] Mobile network idle sockets disconnected

2012-12-17 Thread Robert Greenwalt
Interesting. If you run a test and take a bugreport you whould be able to look at QTAGUID STATS INFO in the bugreport. It shows the packets/bytes sent per app. Take a bugreport first, let your device sit for 10 minutes and take another. The 4th column is the UID of the app and you should be

Re: [android-developers] Mobile network idle sockets disconnected

2012-12-17 Thread Goncalo Oliveira
What if I don't have root access? Is there anything else I can do? On 17 December 2012 16:08, Robert Greenwalt rgreenw...@google.com wrote: If you have root you can alter the global settings database (DATA_STALL_ALARM_AGRESSIVE_DELAY_IN_MS, DATA_STALL_ALARM_NON_AGGRESSIVE_DELAY_IN_MS). On

Re: [android-developers] How to detect input trough the audio jack?

2012-12-17 Thread Fred Niggle
Hello, Yes this is possible. First read here: http://developer.android.com/reference/android/content/Intent.html#ACTION_HEADSET_PLUG code samples are here : http://www.gauntface.co.uk/blog/2010/04/14/using-android-headset-buttons-earphone-buttons/ Hope this help, Fred On 16 December 2012

[android-developers] How i call class into my activity?

2012-12-17 Thread Antonis Kanaris
Hello i find this class for upload data...but how i call it from my Activity?On create... public class SimpleHttpPut { public static void main(String[] args) { HttpClient client = new DefaultHttpClient(); HttpPost post = new HttpPost(http://www.power7.net/temp.php;);

Re: [android-developers] Mobile network idle sockets disconnected

2012-12-17 Thread Fred Niggle
I am wondering why you are trying to maintain an idle connection? Usually when my apps send data the socket connection is made, then the data is sent, then the socket is closed. This is the normal way of operating. Regards, Fred On 17 December 2012 16:34, Goncalo Oliveira gonc...@minkan.net

Re: [android-developers] shoeboxed? wtf?

2012-12-17 Thread Fred Niggle
+1, now i filter out emails from that domain :) On 17 December 2012 16:32, TreKing treking...@gmail.com wrote: On Mon, Dec 17, 2012 at 2:59 AM, Piren gpi...@gmail.com wrote: Am i the only one that keeps getting an email from some site named Shoeboxed every time i post to this group?

Re: [android-developers] Mobile network idle sockets disconnected

2012-12-17 Thread Mark Murphy
On Mon, Dec 17, 2012 at 11:37 AM, Fred Niggle fred.nig...@googlemail.com wrote: I am wondering why you are trying to maintain an idle connection? You would do this for any sort of push delivery from the server: standard push notifications, VOIP for incoming calls, etc. So, for example, C2DM

Re: [android-developers] Mobile network idle sockets disconnected

2012-12-17 Thread Goncalo Oliveira
Fred, I do understand that this is not a standard for most android apps. Therefore, there are a number of scenarios, like Mark pointed out. In this case, the connection is also used for data pushing. Polling would be much simpler, but it does not fit the required scenario. On 17 December 2012

Re: [android-developers] Mobile network idle sockets disconnected

2012-12-17 Thread Robert Greenwalt
I don't think so. This is not designed for users to tweak. If you can figure out who is sending data we might be able to do something. R On Mon, Dec 17, 2012 at 8:34 AM, Goncalo Oliveira gonc...@minkan.netwrote: What if I don't have root access? Is there anything else I can do? On 17

Re: [android-developers] Mobile network idle sockets disconnected

2012-12-17 Thread Goncalo Oliveira
Guess I need a rooted device for that... -- QTAGUID STATS INFO (su root cat /proc/net/xt_qtaguid/stats) -- *** exec(su): Permission denied On 17 December 2012 16:33, Robert Greenwalt rgreenw...@google.com wrote: Interesting. If you run a test and take a bugreport you whould be able

Re: [android-developers] Mobile network idle sockets disconnected

2012-12-17 Thread Fred Niggle
Well, just to recap: You know that android is not supposed to keep an idle connection open for an extended period. Also you have declined the option to use of a heartbeat to keep the connection open. You also know that GCM (C2DM) have a way of keeping in touch. At this point the main(only?)

Re: [android-developers] Re: Identifying HTTP Get requests in Android

2012-12-17 Thread Kristopher Micinski
On Mon, Dec 17, 2012 at 6:35 AM, Archana ramalingam.arch...@gmail.com wrote: Hi, Is it like having separate thread for each request(GET/POST/DELETE) ? Can you please explain? I was also thinking of AsyncTask, message queue or multithreading. Thanks! Basically, those are all equivalent...

Re: [android-developers] How i call class into my activity?

2012-12-17 Thread TreKing
On Mon, Dec 17, 2012 at 10:36 AM, Antonis Kanaris ant...@in.gr wrote: Hello i find this class for upload data...but how i call it from my Activity? Learn Java and I'm sure you'll be able to figure it out.

Re: [android-developers] Mobile network idle sockets disconnected

2012-12-17 Thread Goncalo Oliveira
Fred, Just to clarify, I haven't declined the heartbeat option. I just would like to avoid low timestamps such as every 5 minute. I'm trying to identify what's happening behind the scenes like Robert suggested, as it seems that it's not just my app that throws this stall. I'll post my results as

Re: [android-developers] Mobile network idle sockets disconnected

2012-12-17 Thread Robert Greenwalt
You could try using the UI in the Settings Data usage screen, but it's going to be hard to select a small enough time slice. Perhaps if you left it for a while so you had a bigger window to work from. On Mon, Dec 17, 2012 at 9:01 AM, Goncalo Oliveira gonc...@minkan.netwrote: Guess I need a

Re: [android-developers] Mobile network idle sockets disconnected

2012-12-17 Thread Robert Greenwalt
I'll try this here as well and see if I can repro the problem on a rooted device. On Mon, Dec 17, 2012 at 9:20 AM, Goncalo Oliveira gonc...@minkan.netwrote: Fred, Just to clarify, I haven't declined the heartbeat option. I just would like to avoid low timestamps such as every 5 minute. I'm

Re: [android-developers] How use and call AsyncTask into my code for upload data?

2012-12-17 Thread TreKing
On Mon, Dec 17, 2012 at 9:13 AM, Antonis Kanaris ant...@in.gr wrote: How use and call AsyncTask into my code for upload data? 1 - Read the docs on AsyncTask. 2 - Read the samples on AsyncTask. 3- Try something. 3 - Use Google to get more samples / answers / details if you're stuck. 4 - Retry

[android-developers] Re: How i call class into my activity?

2012-12-17 Thread bob
SimpleHttpPut.main(new String[]); On Monday, December 17, 2012 10:36:23 AM UTC-6, Antonis Kanaris wrote: Hello i find this class for upload data...but how i call it from my Activity?On create... public class SimpleHttpPut { public static void main(String[] args) {

Re: [android-developers] Re: How i call class into my activity?

2012-12-17 Thread Kristopher Micinski
That won't work... You can't call a static method from a non static context.. Kris On Mon, Dec 17, 2012 at 12:28 PM, bob b...@coolfone.comze.com wrote: SimpleHttpPut.main(new String[]); On Monday, December 17, 2012 10:36:23 AM UTC-6, Antonis Kanaris wrote: Hello i find this class for

Re: [android-developers] Mobile network idle sockets disconnected

2012-12-17 Thread Goncalo Oliveira
Robert, Kind of a wild guess but... GTalkService? logcat 12-17 17:14:47.212 473 1312 E *GTalkService: connectionClosed: no XMPPConnection - That's strange*! 12-17 17:14:47.220 213 223 E AlarmManagerService: android_server_AlarmManagerService_set to type=2, 4627.14900 12-17

Re: [android-developers] Mobile network idle sockets disconnected

2012-12-17 Thread Goncalo Oliveira
Can't get QTAGUID STATS INFO on samsung. On the other device also fails retrieving that info. I'm going to try to get another device. Meanwhile, I published the whole bugreport output, maybe you can see something that I can't... https://www.dropbox.com/sh/18o32mndge2rrpd/vAeETMVnh6 Cheers On 17

Re: [android-developers] Re: How i call class into my activity?

2012-12-17 Thread Lew
Kristopher Micinski wrote: That won't work... You can't call a static method from a non static context.. Of course you can. It's the other way around you can't. Otherwise you couldn't call, for example, 'Arrays.asList()' or an enum's 'valueOf()'.

[android-developers] Re: layout overlays

2012-12-17 Thread djhacktor
use popup window it provide action for on click cancel -- 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

Re: [android-developers] Mobile network idle sockets disconnected

2012-12-17 Thread Robert Greenwalt
It seems we switched our traffic stats strategy recently (JB) and now UDP packets are getting included when they arguably shouldn't be. If your DNS server is disconnected from the internet and can't resolve the mtalk.google.com queries you'll end up with outgoing queries and no responses. This

[android-developers] Re: How use and call AsyncTask into my code for upload data?

2012-12-17 Thread bob
*Create a subclass of AsyncTask like so:* private class DownloadFilesTask extends AsyncTaskURL, Integer, Long { protected Long doInBackground(URL... urls) { int count = urls.length; long totalSize = 0; for (int i = 0; i count; i++) { totalSize +=

Re: [android-developers] Dynamically selecting Map API version

2012-12-17 Thread lbendlin
Thanks Mark. Are they really serious that you need to have a physical device to develop against Map API v2? Really? On Monday, December 17, 2012 7:55:36 AM UTC-5, Mark Murphy (a Commons Guy) wrote: On Mon, Dec 17, 2012 at 7:45 AM, lbendlin lu...@bendlin.us javascript: wrote: Our

Re: [android-developers] Dynamically selecting Map API version

2012-12-17 Thread Mark Murphy
On Mon, Dec 17, 2012 at 5:05 PM, lbendlin l...@bendlin.us wrote: Thanks Mark. Are they really serious that you need to have a physical device to develop against Map API v2? Really? Yes, unless you wish to pirate some software. BTW, I literally just tried doing the backwards-compatibility

[android-developers] Nexus 10 and screen size qualifiers

2012-12-17 Thread jtoolsdev
We really need a tool determine how Google Play will filter our screen size qualifiers before we update our APKs. I have two APKs for an app. One is for devices with screens less than 10 in size and one for those of 10 or larger. This has worked fine for a year but now I'm learning that the

Re: [android-developers] How to sync development projects?

2012-12-17 Thread lbendlin
Anyone here who can tell the story of I moved from SVN to git and have the consecutive app versioning numbers to prove it? On Monday, December 17, 2012 11:25:29 AM UTC-5, TreKing wrote: On Mon, Dec 17, 2012 at 2:33 AM, Piren gpi...@gmail.com javascript:wrote: It feels like we're not on the

Re: [android-developers] Dynamically selecting Map API version

2012-12-17 Thread lbendlin
This gets funner by the minute. I starred the bug. On Monday, December 17, 2012 5:11:46 PM UTC-5, Mark Murphy (a Commons Guy) wrote: On Mon, Dec 17, 2012 at 5:05 PM, lbendlin lu...@bendlin.us javascript: wrote: Thanks Mark. Are they really serious that you need to have a physical

[android-developers] Re: about gtalk service and Google's winter cleaning

2012-12-17 Thread alex kyo
Does Anyone has any info? -- 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

Re: [android-developers] about gtalk service and Google's winter cleaning

2012-12-17 Thread Nikolay Elenkov
On Mon, Dec 17, 2012 at 6:32 PM, alex kyo kyokanxuj...@gmail.com wrote: e.g. You may login with your Gmail account in Google play on a PC browser, choose a app and click install. The device which has the same account registered will receive the push from Google and begin the installation.

Re: [android-developers] about gtalk service and Google's winter cleaning

2012-12-17 Thread alex kyo
THX Niko, I read this post http://www.engadget.com/2012/12/14/google-winter-cleaning/ and guess it should be some google-related apps on non-android devices stuff. On Tuesday, December 18, 2012 12:20:02 PM UTC+9, Nikolay Elenkov wrote: On Mon, Dec 17, 2012 at 6:32 PM, alex kyo

[android-developers] Re: Problem with AnimationDrawable

2012-12-17 Thread Hassy
Hi, I had the same problem. you can execute a runnable to start your frame animation like this Handler startHandler = new Handler(); startHandler.postDelayed(new Runnable(){ public void run() { //animate animate(); }}, 100); hope it helps

[android-developers] Re: Problem with AnimationDrawable

2012-12-17 Thread Hassy
Hi, I had the same problem. you can execute a runnable to start your frame animation without using buttons like this Handler startHandler = new Handler(); startHandler.postDelayed(new Runnable(){ public void run() { //animate animate(); }},

Re: [android-developers] Re: IBM Worklight

2012-12-17 Thread Mady Zaid
what's the difference between it and phonegap ? 2012/12/17 bob b...@coolfone.comze.com *The IBM Worklight Developer Edition is a self-contained, easy-to-install plugin for the Eclipse IDE. While IBM Worklight Enterprise and Consumer Editions consist of separate development environment and