程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> c#應用xamarin編寫撥打德律風法式

c#應用xamarin編寫撥打德律風法式

編輯:C#入門知識

c#應用xamarin編寫撥打德律風法式。本站提示廣大學習愛好者:(c#應用xamarin編寫撥打德律風法式)文章只能為提供參考,不一定能成為您想要的結果。以下是c#應用xamarin編寫撥打德律風法式正文


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

以上所述就是本文的全體內容了,願望年夜家可以或許愛好。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved