[android-developers] Re: In eclipse-Android 4.2-Unable to build: the file dx.jar was not loaded from the SDK folder!

2012-11-15 Thread Efor18
It was happening to me as well, try closing and launching the eclipse again. This solve the problem for me. El jueves, 15 de noviembre de 2012 07:44:27 UTC+1, Ram escribió: I have updated Android 4.2 SDK using SDK Manager and ADT 21.0.0.v201210310015-519525 in Eclipse(Indigo). I have

[android-developers] Re: Make a call without dial in background

2009-09-16 Thread Efor18
Thanks for your reply Mark, But I do this, and when a want to make a call, start the dial app. I want to make a call with my own app, not with the dial app. But I dont know how to make this. I think that is impossible. On Sep 15, 4:20 pm, Mark Murphy mmur...@commonsware.com wrote: Is

[android-developers] Re: Make a call without dial in background

2009-09-16 Thread Efor18
Thanks Mark, And is possible to stop a call, for example, 10 second after the call start? Thanks a lot for your support. On Sep 16, 11:59 am, Mark Murphy mmur...@commonsware.com wrote: Efor18 wrote: Thanks for your reply Mark, But I do this, and when a want to make a call, start

[android-developers] Make a call without dial in background

2009-09-15 Thread Efor18
Hi, Is possible to make a call programaticaly without the dial? I want to make an app that in background make a call, but i need that don't show the Dial app, only my own app. Anyone can help me? Thanks in advance! --~--~-~--~~~---~--~~ You received this message

[android-developers] Make a call without dial in background

2009-09-15 Thread Efor18
Hi, Is possible to make a call programaticaly without the dial? I want to make an app that in background make a call, but i need that don't show the Dial app, only my own app. Anyone can help me? Thanks in advance! --~--~-~--~~~---~--~~ You received this message

[android-developers] Custom java view and custom attributes or parameters from the XML

2009-09-09 Thread Efor18
Hi, I'm trying to make a libray which has a custom view, as a library is not an android project else a java project. I can't especify the attributes or parameters in a xml file like in a usual android project. Are there any way to create custom parametres or attributes for a custom view using

[android-developers] Two projects, One Service

2009-09-01 Thread Efor18
Hello, I need to make a service usable from other applications, I'm trying the following: First eclipse Project: - Service.java: The class that extend the Service. - MainActivity.java: Activity that only launch the service. - MyInterface.aidl: The interface to comunicate with teh service. -