[android-developers] Re: Hoe to record voice..?

2011-01-11 Thread Matias Alberto de la Vega
Hello Abhilash, could you be more specific about the exception? what kind of exception is the application throwing? have a nice day. On Jan 11, 1:02 pm, Abhilash baddam abhilash.androiddevelo...@gmail.com wrote: any help... On Tue, Jan 11, 2011 at 8:45 PM, Abhilash baddam

[android-developers] Re: Send email in background

2010-04-06 Thread Matias Alberto de la Vega
Really bad move not to allow developers to send email programatically in the background, and not just that, you may also find annoying, as I did, that you can only attach pictures to your emails =( I have a nexus one and let me tell you, for such a device a lack of this functionality is

[android-developers] Re: delete the sqlite database?

2010-03-23 Thread Matias Alberto de la Vega
Probably won't work as you are not loged in as root in the device, while you are loged in as rootin the emulator. You can try anyway...good luck On 23 mar, 12:32, christian.posta christian.po...@gmail.com wrote: At least one way is to login to the device using the Android Debug Bridge

[android-developers] Re: GPS without gps signal

2010-03-18 Thread Matias Alberto de la Vega
As Mike said, you will be able to use GPS even if you have no mobile signal or wifi connectivity, since GPS has it's own satellites, you can get coordenates as long as you have GPS friendly environment, some tips: you MUST be able to see the sky, no tall buildings around is better, and the bigger

[android-developers] Re: email multi attachments

2010-03-18 Thread Matias Alberto de la Vega
Yes I have the zip stuff working, yet couldn't manage to make ACTION_SEND_MULTIPLE either =( too bad that Google had put so little info about that topic in the API documentation. If you need some snippets with the zip let me know. Bye On 17 mar, 22:51, SRF srfar...@gmail.com wrote: I couldn't

[android-developers] Re: CAMERA permission features

2010-03-18 Thread Matias Alberto de la Vega
Sure you can use something like: Camera mCamera = Camera.open(); Camera.Parameters params = mCamera.getParameters(); ArrayListString focusModes = params.getSupportedFocusModes(); ArrayListString flashModes = params.getSupportedFlashModes(); Take care. On 18 mar, 13:30, Paolo brand...@gmail.com

[android-developers] Re: Activity lifecycle problem on Nexus One - onStop not called

2010-03-04 Thread Matias Alberto de la Vega
Zuli, onStop() is called when your Activity is no longer visible, this may happen if a new activity is created (full screen mode) and is positioned in front of yours, also it may be caused because another Activity is resumed and brought to front (also full screen) and in the last case onStop() is

[android-developers] Re: Advice please

2010-03-04 Thread Matias Alberto de la Vega
Harry you mean using a HashMap or an ArrayList with the 5000 words hard-coded? That sounds like a bad idea, not to mention you'll go crazy programming it.In my opinion the best approach is a SQLite database, but I'm just a Newbie with Android, maybe some of the Gurus out there can give you a

[android-developers] Re: Android AudioRecord errors

2010-03-03 Thread Matias Alberto de la Vega
Dimitry, if I'm not wrong, Android currently only supports AMR_NB for encoding+decoding, PCM is only supported for decoding so far. And the file encapsulating this type encoding should be 3GPP (audio/3gp is the MIME type which you may need). You can find more information about MediaRecorder in

[android-developers] Re: Delete files from Phone memory(Internal)

2010-03-03 Thread Matias Alberto de la Vega
Hey Reju, I'm not an expert but I would recommend you trying with CLEAR_APP_USER_DATA permission in your AndroidManifest.xml file. On 2 mar, 19:19, Reju rej...@gmail.com wrote: Help Me experts On Feb 22, 2:33 pm, Reju rej...@gmail.com wrote: I can access the external memory and i could

[android-developers] Re: Delete files from Phone memory(Internal)

2010-03-03 Thread Matias Alberto de la Vega
Also, considering Androids security architecture, keep in mind that the files generated by each application are only accessible to that application only, at least for default. That said, you are probably not going to be able, by default, to delete or modify files which were not created by your

[android-developers] Re: Problem with image scrolling

2010-03-03 Thread Matias Alberto de la Vega
Satish, your layout structure should be something like this: ScrollView LinearLayout ImageView /ImageView /LinearLayout /ScrollView On 2 mar, 16:56, Satish satishkolaw...@gmail.com wrote: Hi   i am adding scaling image (size 800 x 800) to Scroll layout but this image does

[android-developers] Re: List fils on SD card

2010-03-03 Thread Matias Alberto de la Vega
treking...@gmail.com wrote: On Tue, Mar 2, 2010 at 6:29 AM, Matias Alberto de la Vega delavega.mat...@gmail.com wrote: Keep in mind that by default some files are only visible and accesible to the applications that create them For local files, yes, but the OP said he's listing files on the SD

[android-developers] Re: Android AudioRecord errors

2010-03-03 Thread Matias Alberto de la Vega
Dimitry, I've used MediaRecorder in a Nexus One and the quality is not that great either. Maybe there's something we can do to improve quality, but I had no time to research on that. I will let you know if I make progress getting better audio quality. Take care On 3 mar, 17:25, dmitriy325ci

[android-developers] Re: Android AudioRecord errors

2010-03-03 Thread Matias Alberto de la Vega
on the device with acceptable quality.   Unfortunately there is not much information available out there.  So keep me posted if you make any progress. Thanks, Dmitriy On Mar 3, 3:46 pm, Matias Alberto de la Vega delavega.mat...@gmail.com wrote: Dimitry, I've used MediaRecorder in a Nexus One

[android-developers] Re: why I can't see google's nexus one from eclipse

2010-02-27 Thread Matias Alberto de la Vega
You can try connecting the phone with USB Debugging disabled (don't mount your sdcard as a removable media from the Nexus One option either), and then once the phone is connected you enable USB Debugging in SettingsApplicationsDevelopmentUSB debugging. Sometimes my Eclipse IDE doesn't recognize my