導航:首頁 > 操作系統 > android跳轉撥號

android跳轉撥號

發布時間:2024-10-17 01:47:24

A. Android之Activity的幾種跳轉方式

intent2.setComponent(new ComponentName(this, OtherActivity.class)); //方法4 startActivity(intent2); 2.隱式調用方法(只要action、category、data和要跳轉到的Activity在AndroidManifest.xml中設置的匹配就OK 3.跳轉到另一個Activity後,當返回時能返回數據 在跳轉的Activity端,調用startActivityForResult(intent2, 1),跳轉到下一個Activity,其中第一個參數為傳入的意圖對象,第二個為設置的請求碼; 跳轉到第二個Activity後,調用setResult(100, intent)方法可返回上一個Activity,其中第一個參數為結果碼,第二個為傳入的意圖對象;

B. Android 跳轉到撥號界面如何自動填寫手機號,但是不自動撥出

1、跳轉到撥號界面,代碼如下:

1)直接撥打

java">IntentintentPhone=newIntent(Intent.ACTION_CALL,Uri.parse("tel:"+phoneNumber));
startActivity(intentPhone);

2)跳轉到撥號界面

Intentintent=newIntent(Intent.ACTION_DIAL,Uri.parse("tel:"+phoneNumber));
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);


2、跳轉到聯系人頁面,使用一下代碼:

IntentintentPhone=newIntent(Intent.ACTION_CALL,Uri.parse("tel:"+phoneNumber));
startActivity(intentPhone);
閱讀全文

與android跳轉撥號相關的資料

熱點內容
程序員的發展是 瀏覽:292
廣州孕期吃溯源碼燕窩批發價格表 瀏覽:946
加密貨幣前端系統 瀏覽:532
河北白溝dns伺服器地址雲空間 瀏覽:209
電子護照加密 瀏覽:712
峰雲伺服器獲取不到列表 瀏覽:882
河南文件加密系統怎麼選 瀏覽:664
東芝美芝壓縮機 瀏覽:690
武漢app製作平台哪裡做得好 瀏覽:643
未編譯此類問題怎麼解決 瀏覽:247
建行數字人民幣app哪裡下載 瀏覽:506
搞笑程序員漫畫 瀏覽:155
數控立車偏心圓編程實例 瀏覽:164
android默認不彈出鍵盤 瀏覽:731
加密空投信息網站 瀏覽:317
阧陰短視頻app在哪裡找 瀏覽:402
vue預編譯部分頁面 瀏覽:882
linux批量解壓gz 瀏覽:580
論文中的演算法描述 瀏覽:815
增量背離量指標源碼 瀏覽:512