[android-developers] Suggestion for best practice-pattern

2012-01-16 Thread sandma...@libero.it
Hi, I'd need to write an app that gets some infos, like remaining time, remaining SMS for this month from my provider. Assuming that these informations are available as html pages, i.e. using a browser I can connect, authenticate and get this data, which is the best way to write an app to get

R: Re: [android-developers] Suggestion for best practice-pattern

2012-01-16 Thread sandma...@libero.it
on, Jan 16, 2012 at 4:55 PM, sandma...@libero.it wrote: Hi, I'd need to write an app that gets some infos, like remaining time, remaining SMS for this month from my provider. Assuming that these informations are available as html pages, i.e. using a browser I can connect, authentica

[android-developers] Getting back from security & location to my application

2010-05-03 Thread sandma...@libero.it
Hi, I have an application that allows the user to enable GPS. In order to do it, first in the main activity I do: lm = (LocationManager) getSystemService(Context.LOCATION_SERVICE); if (!lm.isProviderEnabled(LocationManager.GPS_PROVIDER)){ showGp

[android-developers] Getting back from security & location to my application

2010-05-03 Thread sandma...@libero.it
Hi, I have an application that allows the user to enable GPS. In order to do it, first in the main activity I do: lm = (LocationManager) getSystemService(Context.LOCATION_SERVICE); if (!lm.isProviderEnabled(LocationManager.GPS_PROVIDER)){ showGpsO

[android-developers] Suggestion for list search

2010-10-14 Thread sandma...@libero.it
Hi, I have to search in an almost-static table with two fields, both strings, SHORT_NAME and LONG_NAME. I have to search for the short name and the program will show me the long one. What's the better way to do it in android? I've thought to distribute an XML file with the application, and to

R: Re: [android-developers] Suggestion for list search

2010-10-14 Thread sandma...@libero.it
Messaggio originale Da: coomar@gmail.com Data: 14/10/2010 21.28 A: Ogg: Re: [android-developers] Suggestion for list search Simple sql queries should get you going. Search by short, and display what you want So you suggest using SqlLite, or will query work on xml data?Ciao -

[android-developers] Searching for Vumeter or needle indicator

2010-05-20 Thread sandma...@libero.it
Hi, I'm searching for a VUMeter or a needle indicator component, like the old instrumentation or the old hifi equipment had. Is there anything available? Ciao -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send e

R: Re: [android-developers] Searching for Vumeter or needle indicator

2010-05-21 Thread sandma...@libero.it
Messaggio originale Da: krishnada...@gmail.com Data: 21/05/2010 10.25 A: Ogg: Re: [android-developers] Searching for Vumeter or needle indicator SoundRecorder has it. Ok, but how can I use it in my apps, i.e. is there any source of it? Ciao -- You received this message because y

R: Re: Re: [android-developers] Searching for Vumeter or needle indicator

2010-05-21 Thread sandma...@libero.it
---Messaggio originale Da: krishnada...@gmail.com Data: 21/05/2010 11.41 A: Ogg: Re: Re: [android-developers] Searching for Vumeter or needle indicator What is your actual requirement, you have said u want a VU meter but in what case scenario you want that meter. Hi,I need a VU meter

[android-developers] How to build calculator?

2010-06-01 Thread sandma...@libero.it
Hi, I'd like to build the calculator2 app supplied with android as a starting point for some mods I'm thinking about. How can I build it in eclipse? In the android source I've found only the .java files, but not the .xml like manifest, main and so on. Thanks. Ciao -- You received this mess

R: Re: [android-developers] How to build calculator?

2010-06-01 Thread sandma...@libero.it
roid-developers] How to build calculator? > >sandma...@libero.it wrote: >> I'd like to build the calculator2 app supplied with android as a starting >> point for some mods I'm thinking about. >> >> How can I build it in eclipse? > >The built-in Androi

R: Re: R: Re: [android-developers] How to build calculator?

2010-06-01 Thread sandma...@libero.it
ly during build. > >Have you set up Eclipse for Android development as described here? > >http://developer.android.com/sdk/index.html > >If not, you should go through it, and work through the example on that >page, just to get started, before importing another project > >

[android-developers] How to tell which permission are required?

2010-06-02 Thread sandma...@libero.it
Hi, I have a problem with an application, that refuses to start, and I think it may be because of missing permission(s). Is there any way to tell which permissions are required by an application in order to run? Thanks -- You received this message because you are subscribed to the Google Gro

R: Re: [android-developers] How to build calculator?

2010-06-03 Thread sandma...@libero.it
>Messaggio originale >Da: mmur...@commonsware.com >Data: 01/06/2010 15.28 >A: >Ogg: Re: [android-developers] How to build calculator? > >Here is the project tree for the Calculator app, complete with resources >and manifest: >http://android.git.kernel.org/?p=platform/packages/apps/Calculat