[android-developers] Re: Looking for LocationManager use for cycling app

2012-03-06 Thread lbendlin
you are not saying where they are riding the bike. Network location services work MUCH better in densely populated areas than out in the country. On Tuesday, March 6, 2012 1:16:00 PM UTC-5, RedBullet wrote: I am writing an app that will will follow a route on the map, very similar to a car

[android-developers] Re: Problem with SAX parser on large XML files?

2012-03-06 Thread Lew
Well, you didn't show us that code, but the part you do show doesn't append successive characters to the value, it only takes a value from a single call. You also will have trouble with multi-character code points. My advice is still valid. You should not assume everything comes in all at once

Re: [android-developers] glesv2debugger

2012-03-06 Thread Siva Velusamy
It is still a internal beta tool, and is not supported as yet. On Tue, Mar 6, 2012 at 2:04 PM, Scs Sek scs...@gmail.com wrote: Hi, Can you anyone tried to setup glesv2debugger  in ICS? I have issues when try to build as Eclipse pulgin Regards, Chandra -- You received this message

Re: [android-developers] Re: Problem with SAX parser on large XML files?

2012-03-06 Thread RedBullet
Got it, so if I turn my characters method into an accumulator and make sure I reset it either in startElement or endElement (as appropriate) I should be good? On Tuesday, March 6, 2012 5:05:18 PM UTC-5, Mark Murphy (a Commons Guy) wrote: On Tue, Mar 6, 2012 at 4:52 PM, RedBullet wrote: I

[android-developers] Re: How to get all sms messages on phone

2012-03-06 Thread Ali Chousein
SmsManager does not do what you are interested in. Android SDK does not officially support retrieving the received and delivered SMS messages. But there are always backdoors. In the past I used the statement below for retriving all (both received and delivered) SMS messages: Cursor cur =

[android-developers] Re: Problem with SAX parser on large XML files?

2012-03-06 Thread Streets Of Boston
If you don't want the hassle of properly implementing a SAX parser, you could try android.sax.RootElement andd android.sax.Element constructs instead. This takes care of lot of the hassle regarding context and hierarchy. On Tuesday, March 6, 2012 4:09:57 PM UTC-5, RedBullet wrote: I have

[android-developers] Re: Looking for LocationManager use for cycling app

2012-03-06 Thread RedBullet
Generally out in the country. On Tuesday, March 6, 2012 5:07:36 PM UTC-5, lbendlin wrote: you are not saying where they are riding the bike. Network location services work MUCH better in densely populated areas than out in the country. On Tuesday, March 6, 2012 1:16:00 PM UTC-5,

Re: [android-developers] Re: Problem with SAX parser on large XML files?

2012-03-06 Thread Mark Murphy
On Tue, Mar 6, 2012 at 5:41 PM, RedBullet scottedchap...@gmail.com wrote: Got it, so if I turn my characters method into an accumulator and make sure I reset it either in startElement or endElement (as appropriate) I should be good? AFAIK, yes. -- Mark Murphy (a Commons Guy)

Re: [android-developers] Re: Problem with SAX parser on large XML files?

2012-03-06 Thread RedBullet
I may not have this problem with the XML structure I am interested in parsing, but I imagine one could run into issues if there are nested elements being parsed: body got some text here authorme/author /body I am guessing I would have to be clever and maintain multiple accumulators

Re: [android-developers] Re: Problem with SAX parser on large XML files?

2012-03-06 Thread Mark Murphy
On Tue, Mar 6, 2012 at 6:02 PM, RedBullet scottedchap...@gmail.com wrote: I may not have this problem with the XML structure I am interested in parsing, but I imagine one could run into issues if there are nested elements being parsed: body      got some text here      authorme/author /body

[android-developers] Re: Developer Options on Galaxy Nexus!?

2012-03-06 Thread stephen
I quite agree. I just found this post after weeks of trying to get to bottom of an issue with my app, and it's exactly the same cause. What a huge waste of time (not to mention the refunds and cancelled orders). There are far more Android handsets in the hands of normal users than developers, so

[android-developers] Re: Looking for LocationManager use for cycling app

2012-03-06 Thread lbendlin
so - GPS it is. Tell them to bring a spare battery. On Tuesday, March 6, 2012 5:45:20 PM UTC-5, RedBullet wrote: Generally out in the country. On Tuesday, March 6, 2012 5:07:36 PM UTC-5, lbendlin wrote: you are not saying where they are riding the bike. Network location services work

[android-developers] Re: Looking for LocationManager use for cycling app

2012-03-06 Thread RedBullet
Not necessarily. In most of New England here we have network coverage. So, I get that network location services have lower power requirements. What about the other parameters? Like how often to be notified (either min time or min distance) do those affect power usage in any significant way for

[android-developers] set Type Intent (set multiple mime types )

2012-03-06 Thread kronos
I would like to send an Intent that would be catch by file managers. In it, I want to specify multiple mime types... how do I do that ? Thanks. -- 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] set Type Intent (set multiple mime types )

2012-03-06 Thread Mark Murphy
On Tue, Mar 6, 2012 at 7:01 PM, kronos jeremyvillalo...@gmail.com wrote: I would like to send an Intent that would be catch by file managers. In it, I want to specify multiple mime types... how do I do that ? You don't. If you take the time to explain what you are trying to accomplish in more

Re: [android-developers] Re: Looking for LocationManager use for cycling app

2012-03-06 Thread Mark Murphy
On Tue, Mar 6, 2012 at 6:55 PM, RedBullet scottedchap...@gmail.com wrote: Not necessarily. In most of New England here we have network coverage. Not with anything vaguely resembling the accuracy you seek. Network provider, in the form of cell tower triangulation, is good for a 1km or so. The

Re: [android-developers] Re: Looking for LocationManager use for cycling app

2012-03-06 Thread RedBullet
OK, got it. So, if I am going to use GPS, are there any good strategies for conserving power? Do the update intervals make any difference? Or is the drain going to be the same because the radio is essentially on? On Tuesday, March 6, 2012 7:07:45 PM UTC-5, Mark Murphy (a Commons Guy) wrote:

Re: [android-developers] Re: Looking for LocationManager use for cycling app

2012-03-06 Thread Mark Murphy
On Tue, Mar 6, 2012 at 7:30 PM, RedBullet scottedchap...@gmail.com wrote: OK, got it. So, if I am going to use GPS, are there any good strategies for conserving power? Do the update intervals make any difference? Or is the drain going to be the same because the radio is essentially on? In

Re: [android-developers] Re: Looking for LocationManager use for cycling app

2012-03-06 Thread RedBullet
I suppose another thing I could do is pick a provider based on how far away I am from the next waypoint and switch to GPS when I am less than 1KM. Does proximityAlerts help in this case? On Tuesday, March 6, 2012 7:30:19 PM UTC-5, RedBullet wrote: OK, got it. So, if I am going to use GPS, are

Re: [android-developers] Re: Looking for LocationManager use for cycling app

2012-03-06 Thread Mark Murphy
On Tue, Mar 6, 2012 at 7:44 PM, RedBullet scottedchap...@gmail.com wrote: I suppose another thing I could do is pick a provider based on how far away I am from the next waypoint and switch to GPS when I am less than 1KM. Does proximityAlerts help in this case? They can. They will let you know

[android-developers] Re: Problem with SAX parser on large XML files?

2012-03-06 Thread Lew
The API docs themselves tell you: http://developer.android.com/reference/org/xml/sax/ContentHandler.html The Parser will call this method to report each chunk of character data. SAX parsers may return all contiguous character data in a single chunk, or they may split it into several chunks ...

Re: [android-developers] Re: Looking for LocationManager use for cycling app

2012-03-06 Thread RedBullet
I guess the question is do they do anything fancy resembling magic in an effort to be power frugal? I suspect it is just a convenience... On Tuesday, March 6, 2012 7:56:53 PM UTC-5, Mark Murphy (a Commons Guy) wrote: On Tue, Mar 6, 2012 at 7:44 PM, RedBullet wrote: I suppose another thing

Re: [android-developers] Re: Problem with SAX parser on large XML files?

2012-03-06 Thread Lew
Mark Murphy (a Commons Guy) wrote: RedBullet wrote: I may not have this problem with the XML structure I am interested in parsing, but I imagine one could run into issues if there are nested elements being parsed: body got some text here authorme/author /body I am

[android-developers] Re: Developer Options on Galaxy Nexus!?

2012-03-06 Thread Chris Stratton
On Sunday, February 5, 2012 12:26:09 PM UTC-5, guruk wrote: hi there, the experimental developer options on the new Galaxy Nexus cause lots of confusion and problems with my users (as the FORCE CPU RENDERING) do not work with my app (and as i heard from lots of other developers, even has

Re: [android-developers] Re: Looking for LocationManager use for cycling app

2012-03-06 Thread RedBullet
I am seeing some evidence that folks are able to use MyTracks to track a long bike ride. So, I might do some testing with it to make sure that is the case (recommendation is to turn off things you don't need, like wifi, bluetooth, and switch to 2G are among the recommendations. Though Airplane

[android-developers] Help me on selecting a name to a game..

2012-03-06 Thread Fred
Hi Everybody, I'm developing a android game and i'm urgently needing to define a name to this game.. can you help on choosing the name? If you have 1 minute to check it up, please just choose the wanted names here:

Re: [android-developers] Re: Looking for LocationManager use for cycling app

2012-03-06 Thread lbendlin
Careful with Airplane mode. On some devices that stupidly prevents GPS from getting a fix. On Tuesday, March 6, 2012 8:49:49 PM UTC-5, RedBullet wrote: I am seeing some evidence that folks are able to use MyTracks to track a long bike ride. So, I might do some testing with it to make sure

[android-developers] how to make the apps is running in odex

2012-03-06 Thread Perry
hi all, Some apps are running in odex file (not apk file) after installation. Could anyone teach me how to do that? -- 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] paid application link of amazon on android market

2012-03-06 Thread Save My Life!
hello i am from the countries which are not listed for merchant/sellers is it a legimate way if i put free app.but to purchase it one has to go on amazon store's link? thanks in advance -- You received this message because you are subscribed to the Google Groups Android Developers group. To

Re: [android-developers] how to make the apps is running in odex

2012-03-06 Thread Dianne Hackborn
All apps run from odex files, that is the final linked dex code that is run on the device. On Tue, Mar 6, 2012 at 6:10 PM, Perry perry...@gmail.com wrote: hi all, Some apps are running in odex file (not apk file) after installation. Could anyone teach me how to do that? -- You received

[android-developers] Re: how to make the apps is running in odex

2012-03-06 Thread Perry
Could you give more hints how to do that? Is it related to Programming or Compiling? On 3月7日, 上午11時03分, Dianne Hackborn hack...@android.com wrote: All apps run from odex files, that is the final linked dex code that is run on the device. On Tue, Mar 6, 2012 at 6:10 PM, Perry

[android-developers] detail about inapp billing

2012-03-06 Thread Save My Life!
hello my apapplication work once a while. how can i use inapp billing? -- 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

Fwd: [android-developers] using custom views in xml layouts

2012-03-06 Thread chowdary nani
Hi magouyaware, Thanks for replay, Thanks for time, yes i am sure CustomView class is in the net.pocketmagic.customangletext package Thanks Naveen. -- Forwarded message -- From: Justin Anderson magouyaw...@gmail.com Date: Wed, Mar 7, 2012 at 12:26 AM Subject: Re:

[android-developers] Dinamic Settings

2012-03-06 Thread Andrei
There is a database in which I'm doing on the selection of cities with the settings (ListPreference), but the user can add a city and need to be available for selection in ListPreference. How can you add an entry in the xml file with the settings to the string-array, a new item (item) ? -- You

[android-developers] adding radio buttons to a popup window.

2012-03-06 Thread Ray Tayek
hi, newbie here. trying to add some radio buttons to a popup window (please see code below). the radio buttons work fine when added to the main layout. but when i add them to the popup window and attempt to display the popup, i don't see anything (not event the popup). thanks package

Re: [android-developers] Re: SD card database

2012-03-06 Thread Bhaumik Thaker
how to create database on sd card can anyone help give some code or tutorial for that... On Wed, Mar 7, 2012 at 3:35 AM, lbendlin l...@bendlin.us wrote: yes. but not everything that is possible is also desirable. On Tuesday, March 6, 2012 1:39:30 PM UTC-5, bob wrote: Is it possible to use

Re: [android-developers] Re: How to get all sms messages on phone

2012-03-06 Thread Farhan Tariq
So this cursor would point to a collection of sms messages? What do i need to extract the sender, receiver, text from the message? Thank you in advance On Wed, Mar 7, 2012 at 3:42 AM, Ali Chousein ali.chous...@gmail.com wrote: SmsManager does not do what you are interested in. Android SDK does

[android-developers] Re: Android Beam demo on PC

2012-03-06 Thread goodline
Hi Shantanu, I also see the same error. Will let you know if I find a solution. Regards Surekha On Mar 4, 1:39 pm, Shantanu Jain shanjain9...@gmail.com wrote: Hello, i am a student and also new to android. I did the changes you told here, but when i run the nfc beam demo given

[android-developers] UI design

2012-03-06 Thread megha agrawal
Hello All, I want to create a UI for my app as shown in image attached with this mail. I am not getting what type of widget they have used?? Can somebody explain, how to go for this type of design? Thanks in Advance!! -- You received this message because you are subscribed to the Google

Re: [android-developers] UI design

2012-03-06 Thread Save My Life!
i am not sure butter titanium framework provide this kind of UI On Mar 7, 2012 11:37 AM, megha agrawal megha14.2...@gmail.com wrote: Hello All, I want to create a UI for my app as shown in image attached with this mail. I am not getting what type of widget they have used?? Can somebody

Re: [android-developers] Re: SD card database

2012-03-06 Thread abhijeet tomar
Hello, you can make a copy of ur database in sd card from DDMS but don't use it or at the time of starting the apps you have to push database in DDMS . -- 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] UI design

2012-03-06 Thread T.M.S.VIJAYKUMARR
Hi, I think they did't use widget, In layout just they placing imges only. On Wed, Mar 7, 2012 at 11:45 AM, Save My Life! alertsavemyl...@gmail.comwrote: i am not sure butter titanium framework provide this kind of UI On Mar 7, 2012 11:37 AM, megha agrawal megha14.2...@gmail.com wrote:

Re: [android-developers] UI design

2012-03-06 Thread TreKing
On Wed, Mar 7, 2012 at 12:07 AM, megha agrawal megha14.2...@gmail.comwrote: I am not getting what type of widget they have used?? Can somebody explain, how to go for this type of design? A simple LinearLayout (vertical) with 3 layouts each consisting of an ImageView and two TextViews. Not

Re: [android-developers] adding radio buttons to a popup window. (fixed)

2012-03-06 Thread Ray Tayek
At 09:00 PM 3/6/2012, you wrote: ,,, the radio buttons work fine when added to the main layout. but when i add them to the popup window and attempt to display the popup, i don't see anything (not event the popup). i needed to set the width and height of the popup. thanks --- co-chair

<    1   2