[android-developers] Re: Saving layout file is very slow with Eclipse / ADT

2011-02-27 Thread Arron
I found this to be a problem in ADT 10. It's super slow to edit an XML file. It keeps rebuilding (to generate the new R) but it's painstakingly slow. I didn't have this issue until the recent upgrade. Makes it nearly unbearable to make any changes in the XML under eclipse. I had to edit it

[android-developers] Installing on SD card for Honeycomb

2011-02-26 Thread Arron
It looks like for honeycomb, there are new groupings on how items are stored? Like in the settings page, I see media and apps being grouped separately. Are there any information about this? It also appears that SD card support isn't available yet but will be added. Will installing apps on SD

[android-developers] Re: SDK 11 is the slowest yet

2011-02-24 Thread Arron
I bought the Xoom cuz I was unable to program and test my code effectively on the emulator. I wish we can get one for a discounted rate or one that's not tied to Verizon for developers. On Feb 24, 4:09 pm, Indicator Veritatis mej1...@yahoo.com wrote: Nice though that fix would be, to date,

[android-developers] Re: android resources error after upgrade to honeycomb and adt v10

2011-02-24 Thread Arron
What? I really hope that's not the real answer to the question. The above code should clearly work. On Feb 24, 10:20 am, J Handal jhand...@gmail.com wrote: A reference to tv has to be set outside onCreate() TextView tv has to be a member variable. Inside the onCreate() tv is short lived.

[android-developers] Android Market Licensing intermittently fails

2010-10-26 Thread Arron
I included the Android Market licensing (LVL) in my application and is currently using it to block invalid users. However users are emailing me that they are legit and include proof that they indeed bought the application. In looking at the errors generated during authentication, I get something

[android-developers] Mic sensor

2010-03-31 Thread Arron
Are there APIs for sensing mic inputs? Like in the text to speech MIC that is available in Android, how do they detect / sense the speech input from MIC? -- 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] Re: Layout problems: AbsoluteLayout deprecated, how to do it now?

2010-01-30 Thread Arron
Well that's exactly the reason why absoluteLayout was deprecated. It works for only one screen size. I will say use various layouts with sp margins to space out the buttons correctly. On Jan 30, 12:23 am, Martin google-gro...@digle.de wrote: Hi! For my game Leonard Frog - Beta in the market,

[android-developers] MediaRecorder: unsupported paramter

2010-01-27 Thread Arron
I took the example from the API: MediaRecorder recorder = new MediaRecorder(); recorder.setAudioSource(MediaRecorder.AudioSource.MIC); recorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP); recorder.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB);

[android-developers] Re: US Taxes: Does Google send a 1099 tax form?

2010-01-26 Thread Arron
The problem I see is that, Google Checkout is horrible at generating any types of reports to show the total earning. Are they really expecting us to take those generated excel spreadsheets that don't even cover the full allotted time and then sum them up ourselves in excel? I look at Google

[android-developers] Re: methods not working (force closing), is there something wrong?

2009-11-20 Thread Arron
It is a lot easier to use ddms and find the exact exception and get the stack trace to figure out what's wrong. On Nov 20, 6:43 pm, Breezy mbre...@gmail.com wrote: I've a couple functions that basically parse XML but it's not XML it is parsing something similar.  I use them in PHP to break

[android-developers] Re: Couldn't update SDK to 2.0

2009-10-29 Thread Arron
I had the same error. I just changed the URL to http instead of https and it worked. On Oct 28, 2:13 pm, Wayne Wenthin wa...@fuligin.com wrote: Download each item individually under android.   It will not create another directory (or at least mine didn't) and will install them under your

[android-developers] Re: Couldn't install Android 2.0 platform

2009-10-29 Thread Arron
change the url to http instead of https. I had the same error and that resolved it. On Oct 28, 2:37 pm, Raphael r...@android.com wrote: Does it happen everytime you try to download? R/ On Wed, Oct 28, 2009 at 4:04 AM, ishfb shishkov.i...@gmail.com wrote: I tried to install Android 2.0

[android-developers] Re: App name/icon problems on Hero after reboot

2009-10-29 Thread Arron La
My application started having this problem after I updated the launcher activity with a different root package. Here's the sequence: 1) Install application on the phone with [com.package] as the path to my launcher activity. 2) Changed the path to be [com.package2] and updated the

[android-developers] Re: Eclair install choked with errors about locks and died horribly leaving corrupted install

2009-10-27 Thread Arron
Everything worked for me and upgraded perfectly. Much easier to upgrade now. On Oct 27, 2:35 pm, maennj maan.naj...@gmail.com wrote: I suggest you download SDK Tools Rev3 manually and then install all SDKs you want. I had a problem with in my Mac too. I deleted the whole folder, downloaded a

[android-developers] Re: Android User Experience and UI refinements

2009-10-27 Thread Arron
I do agree on some accounts. I love the new 2D icons though. On Oct 27, 10:48 am, momo regist...@gmail.com wrote: I think Android has a ton of functionalities and that's definitely wonderful.  I am not trying to be overally critical since I know the Android team has been working hard and

[android-developers] Re: Could be better?!?!

2009-02-22 Thread Arron
I believe when the app is initially bought, it isn't charged until the 24 hours period is over. Once the refund period is over, then the opposing credit card is finally charged. During the refund period, you should not be given the burden of chargeback fees. If the user wants to charge back

[android-developers] Usage of Permission.CLEAR_APP_CACHE?

2009-01-19 Thread Arron
I see the permission CLEAR_APP_CACHE but I can not find how we can use this permission. In looking at the packageInstaller code, it uses freeApplicationCache() from PackManager, which doesn't seem to be available in the public SDK. Does the current SDK support using CLEAR_APP_CACHE permission?

[android-developers] Re: Usage of Permission.CLEAR_APP_CACHE?

2009-01-19 Thread Arron
I mean freeApplicationCache() from PackageManager. On Jan 19, 3:07 pm, Arron arro...@gmail.com wrote: I see the permission CLEAR_APP_CACHE but I can not find how we can use this permission.  In looking at the packageInstaller code, it uses freeApplicationCache() from PackManager, which

[android-developers] RingTone Picker in Rings Extend application

2008-10-22 Thread Arron
Sorry I am still a novice at this but I don't understand how the Rings Extend application is able to use the intent android.intent.action.RINGTONE_PICKER to intercept picking ringtones. I don't see that intent anywhere in the released SDK documentation. Is that a hidden intent? Am I completely

[android-developers] Re: RingTone Picker in Rings Extend application

2008-10-22 Thread Arron
, Arron [EMAIL PROTECTED] wrote: Sorry I am still a novice at this but I don't understand how the Rings Extend application is able to use the intent android.intent.action.RINGTONE_PICKER to intercept picking ringtones.  I don't see that intent anywhere in the released SDK documentation

[android-developers] Type and draw in the same view

2008-10-14 Thread Arron
Is it possible to type and draw (like finger paint) on the same view? Would I need to make my own view or does the sdk have an existing one I can possibly use for this? Can someone point me in the right direction? --~--~-~--~~~---~--~~ You received this message

[android-developers] Custom drawing with fingers

2008-10-10 Thread Arron
I want to allow the user to paint/draw with their fingers. Can someone point me to the right direction to go? or a sample app that has this capability? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android