[android-developers] Re: WebView FileUploader

2013-05-03 Thread Rahul Kaushik
AnyOne??? On Thu, May 2, 2013 at 3:17 PM, Rahul Kaushik rahulkaushi...@gmail.comwrote: Hi, I am using Webview as container for a website,Web site have an option Upload File ,this button is not working for me am using Android Version(3.0.1) Any Suggestions?? Thanks RK -- -- You

[android-developers] Re: Service onDestroy() not being called...

2013-05-03 Thread Johan Appelgren
In addition to binding to the service, do you use startService? If you do, you must also call stopService/stopSelf, just unbinding and calling stopForeground is not enough. On Thursday, May 2, 2013 9:07:07 PM UTC+2, Larry Meadors wrote: I have a bound service that I'm using to play audio.

[android-developers] Re: Spinner borders

2013-05-03 Thread Filipe
Found the solution. setPadding(0, 0, 0, 0); Didn't know this existed. Segunda-feira, 29 de Abril de 2013 9:55:07 UTC+1, Filipe escreveu: Hi, I need to create a small spinner in height. So I created a spinner with 58pixels height, but it has big borders on top and bottom, so

[android-developers] Splash Screen: When my splash screen loads and i hit the back button, the application still shows?? why??

2013-05-03 Thread mrallen302
I am fairly new to android development and i have just finished my first application. I added in a splash screen which works perfectly it loads b4 the main menu and then switches after 3 seconds, however if the back button is pushed on the phone during the splash screen, you are taken out of

Re: [android-developers] Help with Google terms for in app payments for extra content addition. Thanks.

2013-05-03 Thread Dale Sharp
Sadly I can't afford a lawyer. ;-( On Thursday, 2 May 2013 17:53:27 UTC+1, TreKing wrote: On Mon, Apr 22, 2013 at 1:57 PM, Dale Sharp pubu...@googlemail.comjavascript: wrote: *In-app purchases:* Developers offering additional content, services or functionality within an application

[android-developers] Re: Splash Screen: When my splash screen loads and i hit the back button, the application still shows?? why??

2013-05-03 Thread lbendlin
you need to cancel your three second timer. On Friday, May 3, 2013 6:14:22 AM UTC-4, mrallen302 wrote: I am fairly new to android development and i have just finished my first application. I added in a splash screen which works perfectly it loads b4 the main menu and then switches after 3

[android-developers] Re: WebView FileUploader

2013-05-03 Thread lbendlin
The website is expecting a Windows or OSX computer at the other end, and has no idea how to handle an Android file system. (Well, Linux, but same difference) On Friday, May 3, 2013 4:11:10 AM UTC-4, rahul kaushik wrote: AnyOne??? On Thu, May 2, 2013 at 3:17 PM, Rahul Kaushik

[android-developers] Re: Service onDestroy() not being called...

2013-05-03 Thread Larry Meadors
On May 3, 2013 3:03 AM, Johan Appelgren johan.appelg...@gmail.com wrote: In addition to binding to the service, do you use startService? If you do, you must also call stopService/stopSelf, just unbinding and calling stopForeground is not enough. Thanks, I ended up putting together a small

[android-developers] custom views

2013-05-03 Thread bob
I'm trying to learn custom views. So I went here: http://developer.android.com/training/custom-views/create-view.html Then I downloaded the sample: https://lh4.googleusercontent.com/-HP0GlAFmogc/UYPCOWqrJWI/AcA/8-bFwiRp5YU/s1600/download_sample.png However, I don't see any Eclipse

[android-developers] Re: Splash Screen: When my splash screen loads and i hit the back button, the application still shows?? why??

2013-05-03 Thread mrallen302
Do u mean delete when the back button is pushed as I am quite new to android or do u mean delete the timer from my code Thank you for replying though -- -- 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] Problem with Android Developer Toolkit version 21.1.0

2013-05-03 Thread Jungle Jim
I updated my Android SDK up through version 4.2.2 (API 17) and all the associated miscellaneous stuff. Also updated Android SDK tools to Rev 21.1 and Android SDK Platform-Tools through 16.0.2. Now Eclipse and ADT aren't working at all. When I start up Eclipse, I get the following error

[android-developers] Re: Splash Screen: When my splash screen loads and i hit the back button, the application still shows?? why??

2013-05-03 Thread lbendlin
when the back button is pushed you need to check if the timer is running, and if it is then you need to cancel it. On Friday, May 3, 2013 10:18:45 AM UTC-4, mrallen302 wrote: Do u mean delete when the back button is pushed as I am quite new to android or do u mean delete the timer from my

Re: [android-developers] New to Android

2013-05-03 Thread Michael Leung
xcode? Android is different from iOS. On Fri, May 3, 2013 at 12:11 PM, TreKing treking...@gmail.com wrote: On Tue, Apr 16, 2013 at 8:10 PM, rlloyd riley.lloy...@gmail.com wrote: I have a java file that I would like to incorporate in to an android application. I'm not sure where in the

Re: [android-developers] Re: How to get scrolling to just scroll endlessly when you swipe the screen up or down?

2013-05-03 Thread Daniel Chacon
Testing on my Galaxy Nexus phone running 4.2.2 Looking at my code i provided lastnight, does there seem to be anything that stands out as possible cause? This portion of my code, is what im referring to.. since its not the same as yours.. // TODO Auto-generated method stub

Re: [android-developers] Problem with Android Developer Toolkit version 21.1.0

2013-05-03 Thread Daniel Chacon
I had similar issues when i upgraded, but had to open ADT seperate from Eclipse, updated everyting, then opened Eclipse, then did another Check for updates and everything was back to normal. Now the issue i ran into after all the upgrades was that my project that would build and run in the

[android-developers] Re: New to Android

2013-05-03 Thread bob
You will want to put your code in a file called beta.java. Then you can add this to your onCreate function: * * *beta.main(null);* * * * * * * Thanks. On Tuesday, April 16, 2013 8:10:28 PM UTC-5, rlloyd wrote: I have a java file

[android-developers] Re: Google Play Developer console testing access issue

2013-05-03 Thread g...@deanblakely.com
you just need to put a comma between the email addresses. On Thursday, May 2, 2013 5:11:32 PM UTC-7, Gary Blakely wrote: All my apps use Google Play License testing. On the settings page in the GP Developer console, there is a box where I have my gmail email address. I have a Google

Re: [android-developers] Re: How to get scrolling to just scroll endlessly when you swipe the screen up or down?

2013-05-03 Thread bob
Try changing this: *TextView textView = new TextView(this);* *setContentView(textView);* *textView.setMovementMethod(new ScrollingMovementMethod());* to this: * * *ScrollView sv = new ScrollView(this); * *TextView

[android-developers] Re: Splash Screen: When my splash screen loads and i hit the back button, the application still shows?? why??

2013-05-03 Thread bob
This guy has a splash screen example that uses a flag (mIsBackButtonPressed) to see if back was pressed: http://myandroidsolutions.blogspot.com/2012/06/android-simple-splash-screen.html So, he basically guards against what you're talking about. Thanks. On Friday, May 3, 2013 9:18:45 AM

[android-developers] Re: Splash Screen: When my splash screen loads and i hit the back button, the application still shows?? why??

2013-05-03 Thread mrallen302
this is perfect, thank you On Friday, May 3, 2013 7:05:48 PM UTC+1, bob wrote: This guy has a splash screen example that uses a flag (mIsBackButtonPressed) to see if back was pressed: http://myandroidsolutions.blogspot.com/2012/06/android-simple-splash-screen.html So, he basically

Re: [android-developers] Help with Google terms for in app payments for extra content addition. Thanks.

2013-05-03 Thread TreKing
On Fri, May 3, 2013 at 6:17 AM, Dale Sharp pubuto...@googlemail.com wrote: Sadly I can't afford a lawyer. ;-( Neither can most of us. I believe there are sites where you can solicit free legal advice. Or, what I do, read the interpret the rules to the best of your own ability and use your own

Re: [android-developers] custom views

2013-05-03 Thread TreKing
On Fri, May 3, 2013 at 8:57 AM, bob b...@coolfone.comze.com wrote: Any ideas? Create your own project and import the files you DO have. - TreKing http://sites.google.com/site/rezmobileapps/treking

[android-developers] Re: Splash Screen: When my splash screen loads and i hit the back button, the application still shows?? why??

2013-05-03 Thread Jonathan S
http://developer.android.com/guide/topics/manifest/activity-element.html#nohist I am still think the Splash Screen shouldn't be needed on Android. I am curious why you needed it. On Friday, May 3, 2013 6:14:22 AM UTC-4, mrallen302 wrote: I am fairly new to android development and i have just

[android-developers] Re: getVoiceMessageCount?

2013-05-03 Thread bob
I think it's because the method uses an *@hide* annotation. So, I think you have to use Reflection to call it. Thanks. On Monday, April 22, 2013 9:39:33 PM UTC-5, steve...@gmail.com wrote: I am trying to get the number of voicemails on an Android using TelephonyManager, seems it

[android-developers] Re: Splash Screen: When my splash screen loads and i hit the back button, the application still shows?? why??

2013-05-03 Thread mrallen302
I need it for my university degree just to display my name and project name. it isn't an application which is going to be released, so only reason have one is because it was requested. Out of interest though why does the android community hate splash pages so much? On Friday, May 3, 2013

Re: [android-developers] Re: getVoiceMessageCount?

2013-05-03 Thread Steve Gabrilowitz
That makes sense, thanks! Do you have an example of how to use reflection to make this call? On Fri, May 3, 2013 at 4:38 PM, bob b...@coolfone.comze.com wrote: I think it's because the method uses an *@hide* annotation. So, I think you have to use Reflection to call it. Thanks. On

Re: [android-developers] dial a predefined number directly from app

2013-05-03 Thread bob
Yes, I think you use ACTION_CALL as shown here: http://www.mkyong.com/android/how-to-make-a-phone-call-in-android/ Something like this: ** Intent callIntent = new Intent(Intent.ACTION_CALL); callIntent.setData(Uri.parse(tel:8675309));

[android-developers] ATT making it impossible to enable USB debugging on Samsung Galaxy S4

2013-05-03 Thread Jungle Jim
I bought a new Galaxy S4 at Radio shack yesterday and was going to start doing some developing with it. I finally realized, to my considerable dismay, that ATT's version of the S4 does not allow you to enable USB debugging. There's no option for it in the Settings menu. I chatted online with

[android-developers] Re: ATT making it impossible to enable USB debugging on Samsung Galaxy S4

2013-05-03 Thread bob
Have you tried this? http://timgray.blogspot.com/2012/11/enable-developer-mode-on-your-jelly.html *to turn on developer mode go into settings, then go to about tablet or about phone and then tap on the build number 7 times.* Thanks. On Friday, May 3, 2013 4:47:23 PM UTC-5, Jungle Jim

Re: [android-developers] Re: New to Android

2013-05-03 Thread TreKing
On Fri, May 3, 2013 at 10:30 AM, bob b...@coolfone.comze.com wrote: You will want to put your code in a file called beta.java. Then you can add this to your onCreate function: * * *beta.main(null);* * * That's a joke, right?

Re: [android-developers] Re: Splash Screen: When my splash screen loads and i hit the back button, the application still shows?? why??

2013-05-03 Thread TreKing
On Fri, May 3, 2013 at 3:44 PM, mrallen302 mrallen...@gmail.com wrote: Out of interest though why does the android community hate splash pages so much? Unless it serves an actual purpose, like loading resources in a game, it's a colossal waste of time for users that want to quickly get in to

Re: [android-developers] Re: getVoiceMessageCount?

2013-05-03 Thread TreKing
On Fri, May 3, 2013 at 3:55 PM, Steve Gabrilowitz steveg1...@gmail.comwrote: Do you have an example of how to use reflection to make this call? You can easily Google this. However, be advised that using undocumented API's is not recommended, as they might change between platform versions,

[android-developers] Re: ATT making it impossible to enable USB debugging on Samsung Galaxy S4

2013-05-03 Thread Jungle Jim
Thanks, Bob. Yes it works. I don't know why they hid it like that. It cost me and several other people hours of unnecessary work and headaches. On Friday, May 3, 2013 5:03:05 PM UTC-5, bob wrote: Have you tried this?