欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

c#使用xamarin编写拨打电话程序

程序员文章站 2022-10-25 18:35:41
xamarin 可以很方便的编写一个电话拨号程序,下面的代码是调用android系统的拨号功能,拨号前会给出一个提示信息。 callbutton是一个用来拨号的按钮,我们...

xamarin 可以很方便的编写一个电话拨号程序,下面的代码是调用android系统的拨号功能,拨号前会给出一个提示信息。

callbutton是一个用来拨号的按钮,我们使用它的点击事件来进行拨号,拨号前会有一个提示框

callbutton.click += (object sender, eventargs e) =>
{
  // on "call" button click, try to dial phone number. sharejs.com
  var calldialog = new alertdialog.builder(this);
  calldialog.setmessage("call " + translatednumber + "?");
  calldialog.setneutralbutton("call", delegate {
      // create intent to dial phone
      var callintent = new intent(intent.actioncall);
      callintent.setdata(android.net.uri.parse("tel:" + translatednumber));
      startactivity(callintent);
    });
  calldialog.setnegativebutton("cancel", delegate { });
 
  // show the alert dialog to the user and wait for response.
  calldialog.show();
};

以上所述就是本文的全部内容了,希望大家能够喜欢。