欢迎来到代码驿站!

.NET代码

当前位置:首页 > 软件编程 > .NET代码

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

时间:2020-12-13 10:10:42|栏目:.NET代码|点击:

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();
};

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

上一篇:ASP.net WebAPI跨域调用问题的解决方法

栏    目:.NET代码

下一篇:C#影院售票系统毕业设计(3)

本文标题:c#使用xamarin编写拨打电话程序

本文地址:http://www.codeinn.net/misctech/32237.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有