Re: [android-developers] How to make phone call from home screen widget?

2010-11-15 Thread Marcin Orlowski
On 15 November 2010 06:54, Rohith Nandakumar wrote: > I have a widget, and I want it to make a phone call to a preset number > when the user clicks on it. How do I do this? The same way you call from any other code. Intent intent= new Intent(Intent.ACTION_CALL); intent.setData(Uri.parse("tel:123

[android-developers] How to make phone call from home screen widget?

2010-11-14 Thread Rohith Nandakumar
Hello everyone, I have a widget, and I want it to make a phone call to a preset number when the user clicks on it. How do I do this? I havn't yet understood how widgets work, so it would be really helpful if you could provide a sample code. Thank you. -- You received this message because you are