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

2013-05-05 Thread Piren
+1 On Thursday, May 2, 2013 11:56:40 PM UTC+3, TreKing wrote: > > > On Tue, Apr 30, 2013 at 2:35 AM, Rahul Kumar > > wrote: > >> How can i make a direct call from the app? > > > Type that, exactly, into Google. > > >

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")); startAc

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

2013-05-02 Thread Kaushik Pendurthi
ITs a very simple intent call .. :) On Thu, May 2, 2013 at 4:56 PM, TreKing wrote: > > On Tue, Apr 30, 2013 at 2:35 AM, Rahul Kumar wrote: > >> How can i make a direct call from the app? > > > Type that, exactly, into Google. > > > --

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

2013-05-02 Thread TreKing
On Tue, Apr 30, 2013 at 2:35 AM, Rahul Kumar wrote: > How can i make a direct call from the app? Type that, exactly, into Google. - TreKing - Chi

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

2013-05-02 Thread Rahul Kumar
I am writing an app using Eclipse, in my app i have a panic button, onclick it should automatically call a predefined number. How can i make a direct call from the app? Thanks! -- -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To pos