我想嘗試在我的應用程序中檢測來電。我從頭開始創建了一個新的Swift項目,以便嘗試一些代碼。我做的唯一的事情就是在與每一個新項目創建的視圖控制器進口CoreTelephony,我也改變了viewDidLoad中()到: super.viewDidLoad()
// Do any additional setup after loading the view, typically from
如何申請Permisson?我嘗試了dcumentation,但是常量int請求代碼MY_PERMISSIONS_REQUEST_CALL_PHONE donst似乎只是工作,爲了向後兼容性還需要記住其他任何事情? ActivityCompat.requestPermissions(getApplicationContext(),
new String[]{Manifest.
我想通過應用程序撥打電話。 是否可以限制選項只能從內置的電話應用程序調用,而不是顯示Viber,Skype或WhatsApp作爲選項? 這裏是我的代碼: Intent i = new Intent(Intent.ACTION_DIAL);
i.setData(Uri.parse("tel:"+ adapter.getItem(position).getContent()));