[android-developers] Speech To Text Recognition

2012-09-30 Thread Archana
Hi, How can we do speech recognition of our own set of commands in Android. As Android have its own speech sdk, But how can I put my own command . Say something like {1a, 1b , 2a, 2b..., 3a, 3b, 3c.. etc}. This is an array of alpha numeric value. and when i say 1a it should print the

[android-developers]

2012-09-30 Thread Illyoung Choi
-- 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 options, visit

[android-developers] silent install ADT eclipse plugin fails

2012-09-30 Thread toto
Hi I must be doing something wrong. I was trying to do a silent install of the ADT plugin into Eclipse 3.7.2 . (I need to do mass-distributed install - which is why I choose command line install) so I ran a script: java -jar plugins/org.eclipse.equinox.launcher_1.2.0.v20110502.jar

Re: [android-developers] Re: sendEmptyMessageAtTime issue

2012-09-30 Thread Dmitriy F
not quite what I needed, but thanks. The main issue is that this method uses uptime 2012/9/28 shuangjie ke keshuang...@gmail.com public final boolean sendEmptyMessageAtTime (int what, long uptimeMillis)Returns true if the message was successfully placed in to the message queue. Returns

Re: [android-developers] Testing In-app billing

2012-09-30 Thread Thomas Bouron
Ok, i'll try that and let you know. Thanks! On Sunday, September 30, 2012 1:53:07 AM UTC+2, TreKing wrote: On Fri, Sep 28, 2012 at 3:28 AM, Thomas Bouron tbo...@gmail.comjavascript: wrote: Ok but as my app is already published, I cannot create another one with the same package name and

[android-developers] image passing ?

2012-09-30 Thread mohammed Nuhail
How to send a image from one activity to another activity ? -- 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] Re: image passing ?

2012-09-30 Thread skink
mohammed Nuhail wrote: How to send a image from one activity to another activity ? in extras as a Parcelable? pskink -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] Re: image passing ?

2012-09-30 Thread mohammed Nuhail
can i send jpeg image ? On Sun, Sep 30, 2012 at 4:32 PM, skink psk...@gmail.com wrote: mohammed Nuhail wrote: How to send a image from one activity to another activity ? in extras as a Parcelable? pskink -- You received this message because you are subscribed to the Google Groups

Re: [android-developers] Re: image passing ?

2012-09-30 Thread skink
mohammed Nuhail wrote: can i send jpeg image ? if you have any image in your filesystem then send its Uri, otherwise if you have in-memory bitmap pass it as a Parcelable pskink -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

Re: [android-developers] Re: image passing ?

2012-09-30 Thread vinay kumar
Where does this jpeg images exists? On Sun, Sep 30, 2012 at 4:51 PM, mohammed Nuhail nuhail...@gmail.comwrote: can i send jpeg image ? On Sun, Sep 30, 2012 at 4:32 PM, skink psk...@gmail.com wrote: mohammed Nuhail wrote: How to send a image from one activity to another activity ? in

[android-developers] How to apply GPL license to Android App ?

2012-09-30 Thread Angelo Luciani Riu
Hi to all, I write this mail because I'd like to apply GPL license to my Android Apps. I read some step from [url ] www.gnu.org)http://www.gnu.org/licenses/gpl-howto.it.html[/url] and I understand I have to do the followings steps : 1. Every file should have a copyright line Esempio:

Re: [android-developers] Testing In-app billing

2012-09-30 Thread John Coryat
The most important thing in testing is that the same version code has to be uploaded to the Play store (but not activated) as you are testing with. If you make changes to your test app, don't update the version code or you'll have problems with in-app billing. Once you're ready to publish,

Re: [android-developers] Testing In-app billing

2012-09-30 Thread Thomas Bouron
Thanks for the notice, i'll keep that in mind. I uploaded my testing version (not activated) on Google Play, installed it on my phone and published my product. I know that it takes time to be pushed over all Google servers so I'm gonna wait and start testing tomorrow. Hope everything will going

Re: [android-developers] Hardware reccomendations: Next development laptop

2012-09-30 Thread Fred Stluka
I've been very happy with my MacBook Pro. --Fred Fred Stluka -- mailto:f...@bristle.com -- http://bristle.com/~fred/ Bristle Software, Inc -- http://bristle.com -- Glad to be of service! Open Source: Without walls and

Re: [android-developers] Re: Fragment Transactions

2012-09-30 Thread G. Blake Meike
This code works: https://github.com/bmeike/ProgrammingAndroid2Examples/blob/master/SimpleFragment/src/com/oreilly/demo/android/pa/simplefragment/SimpleFragment.java G. Blake Meike Marakana The second edition of Programming Android is now available:

Re: [android-developers] Hardware reccomendations: Next development laptop

2012-09-30 Thread Larry Meadors
On Sun, Sep 30, 2012 at 7:49 AM, Fred Stluka f...@bristle.com wrote: I've been very happy with my MacBook Pro. +1 This isn't really on topic, so I'll keep it short. Mac+OSX Just Works. Worth every penny. One big downside is that you'll never want to use Windows again. ;-) Ubuntu 10 and 12 are

[android-developers] Re: Google cancelled this order. Reason: Other

2012-09-30 Thread b0b
Since a few days there seem to be a lot more cancelled orders with Reason: Other (describe below) than usual. Do anyone notice this ? -- 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] Viewpager and fragments

2012-09-30 Thread Lars
Hi, I want to have an ongoing viewpager (something like the calendar app) where i can show the days of the year each fragment represents one day. i like to fill that fragment with data from the web but i don't want it too load it again and again each time i add a fragment to the viewpager, so i

Re: [android-developers] How can I prevent two buttons from being clicked at the same time?

2012-09-30 Thread Streets Of Boston
Thank you Harri, I'm going to try this out tomorrow. On Friday, September 28, 2012 5:47:10 PM UTC-4, Harri Smått wrote: On Sep 28, 2012, at 11:45 PM, Streets Of Boston flying...@gmail.comjavascript: wrote: Is there a reliable or proper way to prevent a click of multiple buttons at

Re: [android-developers] How can I prevent two buttons from being clicked at the same time?

2012-09-30 Thread Kristopher Micinski
So the UI is handled on a single thread... Why don't you disable one of them until it is released... kris On Fri, Sep 28, 2012 at 4:45 PM, Streets Of Boston flyingdutc...@gmail.com wrote: Hi, I have this issue (at least on the Galaxy Tab 10.1 running 3.2 and the Nexus 7). E.g. I have a

Re: [android-developers] Re: Google cancelled this order. Reason: Other

2012-09-30 Thread b0b
On Sunday, 30 September 2012 21:57:30 UTC+2, Kostya Vasilyev wrote: Yes, seeing more than usual too. Tonight it is a cancel fest with 1 purchase out of 3 or 4 cancelled this way...with generally 2 or 3 cancel lines for the same user in the console. -- You received this message because you

[android-developers] Re: Where to download the Lenovo A2901 ADB interface USB driver?

2012-09-30 Thread mw18888
Veritatis, Thank you for your comment. Regards, On Wednesday, September 26, 2012 10:56:24 PM UTC-4, Indicator Veritatis wrote: If it is a Windows driver you are interested in, go to the Lenovo website for your Lenovo and select the right USB package (including lots of drivers, I forget

Re: [android-developers] Re: Google cancelled this order. Reason: Other

2012-09-30 Thread Kostya Vasilyev
2012/10/1 b0b pujos.mich...@gmail.com On Sunday, 30 September 2012 21:57:30 UTC+2, Kostya Vasilyev wrote: Yes, seeing more than usual too. Tonight it is a cancel fest with 1 purchase out of 3 or 4 cancelled this way...with generally 2 or 3 cancel lines for the same user in the console.

Re: [android-developers] An app developer is asking for my login credentials...

2012-09-30 Thread Sal Colascione III
Thank you very much! On Saturday, September 29, 2012 5:36:33 PM UTC-4, TreKing wrote: On Wed, Sep 26, 2012 at 10:51 AM, Sal Colascione III claz...@gmail.comjavascript: wrote: Wouldn't this also give them access to my Gmail, Adsense, Adwords, etcetera accounts? Yes. Or can Google

[android-developers] Re: An app developer is asking for my login credentials...

2012-09-30 Thread Sal Colascione III
Thank you as well! I just emailed them asking if they'd have any issue with my doing the final compiling, signing and uploading of the app. On Saturday, September 29, 2012 9:04:04 PM UTC-4, John Coryat wrote: You might want to create a user account for them so they can upload apps without

Re: [android-developers] Hardware reccomendations: Next development laptop

2012-09-30 Thread Lew
Larry Meadors wrote: Fred Stluka wrote: I've been very happy with my MacBook Pro. +1 I've used a Mac (tower, but same diff) for Android development. It's fine, simply because Mac looks just like Linux to an Android programmer. This isn't really on topic, so I'll keep it short.

[android-developers] Re: How to apply GPL license to Android App ?

2012-09-30 Thread Lew
Angelo Luciani Riu wrote: I write this mail because I'd like to apply GPL license to my Android Apps. I read some step from [url ] www.gnu.org)http://www.gnu.org/licenses/gpl-howto.it.html[/url] and I understand I have to do the followings steps : So do those steps. 1. Every file

[android-developers] Re:

2012-09-30 Thread Lew
On Sunday, September 30, 2012 2:32:58 AM UTC-4, Illyoung Choi wrote: -- 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] Re: How to apply GPL license to Android App ?

2012-09-30 Thread Lew
Angelo Luciani Riu wrote: I write this mail because I'd like to apply GPL license to my Android Apps. They're not actually emails on a news forum, they're posts. And you repeated this one. There's an answer in the other thread you started with this question. The short answer is, do it if

[android-developers] Returning complex object/s via SOAP from .Net web services

2012-09-30 Thread solnichko
Hi everyone Can anyone suggest what are the options for returning complex object/s via SOAP from .Net web services? At the moment I am trying to parse the XML data structure and not quite sure how to do so. The data returned looks like this: stringtitlePasifika Drums/titledescriptionThis is a

[android-developers] Database and helpers

2012-09-30 Thread Paula Castellanos
Hi guys, Do you know what is the best practice when I work a data base in Android, I mean, I know when you have a table you have a helper, but can I have only one helper, and it creates all tables. it's a good practice or not. Thanks, and sorry if I have some mistakes -- You received this

Re: [android-developers] Returning complex object/s via SOAP from .Net web services

2012-09-30 Thread Kristopher Micinski
this isn't Android related, but what do you mean via complex? kris On Sun, Sep 30, 2012 at 9:10 PM, solnichko lari...@gmail.com wrote: Hi everyone Can anyone suggest what are the options for returning complex object/s via SOAP from .Net web services? At the moment I am trying to parse the

[android-developers] Re: Returning complex object/s via SOAP from .Net web services

2012-09-30 Thread solnichko
I mean not just a simple String or int. The example XML string above is returned from the web services when an ID of this object is passed. At the moment I get Title, Description and a couple f URLs returned, but have no success parsing the XML String above and displaying the values simply in

Re: [android-developers] Re: Returning complex object/s via SOAP from .Net web services

2012-09-30 Thread Kristopher Micinski
Parse the XML using an XML parser... Then consider using a Loader: http://developer.android.com/guide/components/loaders.html Also consider using an AsyncTask, forgoing that... kris On Sun, Sep 30, 2012 at 11:17 PM, solnichko lari...@gmail.com wrote: I mean not just a simple String or int.

Re: [android-developers] Re: Menu icon contrast

2012-09-30 Thread Spiral123
there is no good solution pre 3.0you are at the mercy of whatever useless skinning the manufacturer did to any particular handset. I suspect it's the main reason Google introduced holo light and holo dark with the insistence that the basics of these themes are not messed with. whilst that

Re: [android-developers] Re: geolocation

2012-09-30 Thread Asheesh Arya
again saying you this exception cause due to because your real device cant get last location thats why you didnt got last location on device use if else condition and putToast msg in else condition -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Re: OnKeyListener errors

2012-09-30 Thread daulat bachhav
i think this is abstract implemntaion of method u put semicolon wrong position ,u also put }); this is best ,}); itis called at a same time u declare and imlement this current meethod On Thursday, 27 September 2012 23:53:34 UTC+5:30, EricW wrote: Hi, Could anyone tell me what I'm doing

[android-developers] Re: Database and helpers

2012-09-30 Thread daulat bachhav
i think u using only one helper class it,s ok but you'r database size is high it,s not so difficult trace for attacer. On Monday, 1 October 2012 06:42:46 UTC+5:30, Paula Castellanos wrote: Hi guys, Do you know what is the best practice when I work a data base in Android, I mean, I know

[android-developers] Re: Explain the preparation speed of MediaPlayer in this application

2012-09-30 Thread daulat bachhav
u using http service it's actually download then play it's not real streaming. On Friday, 28 September 2012 14:11:24 UTC+5:30, Dmitriy F wrote: Here's an https://play.google.com/store/apps/details?id=com.maxxt.pcradiofeature=search_result#?t=W251bGwsMSwxLDEsImNvbS5tYXh4dC5wY3JhZGlvIl0. that

[android-developers] Android - .Net Web Service Implementation

2012-09-30 Thread Krishna Mahadik
Hi Guys, I have been trying to implement Android - .Net Web Service logic in my application, but unfortunately I am not able to understand it. Can anyone please tell me how does it work and what are key notes for the same. Thanks Regards, Krishna V. Mahadik -- -- . \\\/// .

[android-developers] new ideas to create android apps which includes framework

2012-09-30 Thread rajlaxmi jagdale
I want ideas which are not available in market. -- 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] Android - .Net Web Service Implementation

2012-09-30 Thread TreKing
On Mon, Oct 1, 2012 at 12:11 AM, Krishna Mahadik krishna.maha...@gmail.comwrote: I have been trying to implement Android - .Net Web Service logic in my application, but unfortunately I am not able to understand it. Can anyone please tell me how does it work and what are key notes for the same.

Re: [android-developers] new ideas to create android apps which includes framework

2012-09-30 Thread Ibrahim Sada
Who vll give u idea for that..coz every one need that first... On 1 October 2012 11:02, rajlaxmi jagdale jagdalerajla...@gmail.com wrote: I want ideas which are not available in market. -- You received this message because you are subscribed to the Google Groups Android Developers group.

[android-developers] new ideas to create android apps which includes framework

2012-09-30 Thread rajlaxmi jagdale
new ideas to create android apps which includes framework -- 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