溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Android中怎么調(diào)用平臺(tái)功能

發(fā)布時(shí)間:2021-06-24 16:13:34 來(lái)源:億速云 閱讀:133 作者:Leah 欄目:移動(dòng)開發(fā)

這篇文章給大家介紹Android中怎么調(diào)用平臺(tái)功能,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對(duì)大家能有所幫助。

Android調(diào)用平臺(tái)功能之顯示網(wǎng)頁(yè)

Uri uri = Uri.parse("http://google.com");   Intent it = new Intent(Intent.ACTION_VIEW, uri);   startActivity(it);   Uri uri = Uri.parse("http://google.com");   Intent it = new Intent(Intent.ACTION_VIEW, uri);   startActivity(it);

Android調(diào)用平臺(tái)功能之顯示地圖

  1. Uri uri = Uri.parse("geo:38.899533,-77.036476");   

  2. Intent it = new Intent(Intent.ACTION_VIEW, uri);   

  3. startActivity(it);   

  4. //其他 geo URI 範(fàn)例   

  5. //geo:latitude,longitude   

  6. //geo:latitude,longitude?z=zoom   

  7. //geo:0,0?q=my+street+address   

  8. //geo:0,0?q=business+near+city   

  9. //google.streetview:cbll=lat,lng&cbp=1,yaw,,pitch,
    zoom&mz=mapZoom   

  10. Uri uri = Uri.parse("geo:38.899533,-77.036476");   

  11. Intent it = new Intent(Intent.ACTION_VIEW, uri);   

  12. startActivity(it);   

  13. //其他 geo URI 範(fàn)例   

  14. //geo:latitude,longitude   

  15. //geo:latitude,longitude?z=zoom   

  16. //geo:0,0?q=my+street+address   

  17. //geo:0,0?q=business+near+city   

  18. //google.streetview:cbll=lat,lng&cbp=1,yaw,,pitch,
    zoom&mz=mapZoom 

Android調(diào)用平臺(tái)功能之撥打電話

//叫出撥號(hào)程式   Uri uri = Uri.parse("tel:0800000123");   Intent it = new Intent(Intent.ACTION_DIAL, uri);   startActivity(it);   //直接打電話出去   Uri uri = Uri.parse("tel:0800000123");   Intent it = new Intent(Intent.ACTION_CALL, uri);   startActivity(it);   //用這個(gè),要在 AndroidManifest.xml 中,加上   //< uses-permission id="android.permission.CALL_PHONE" />   //叫出撥號(hào)程式   Uri uri = Uri.parse("tel:0800000123");   Intent it = new Intent(Intent.ACTION_DIAL, uri);   startActivity(it);   //直接打電話出去   Uri uri = Uri.parse("tel:0800000123");   Intent it = new Intent(Intent.ACTION_CALL, uri);   startActivity(it);   //用這個(gè),要在 AndroidManifest.xml 中,加上   //< uses-permission id="android.permission.CALL_PHONE" />

Android調(diào)用平臺(tái)功能之發(fā)送SMS/MMS

  1. //需寫號(hào)碼SMS   

  2. Intent it = new Intent(Intent.ACTION_VIEW);   

  3. it.putExtra("sms_body", "The SMS text");   

  4. it.setType("vnd.android-dir/mms-sms");   

  5. startActivity(it);   

  6. //發(fā)送SMS   

  7. Uri uri = Uri.parse("smsto:0800000123");   

  8. Intent it = new Intent(Intent.ACTION_SENDTO, uri);   

  9. it.putExtra("sms_body", "The SMS text");   

  10. startActivity(it);   

  11. //發(fā)送MMS   

  12. Uri uri = Uri.parse("content://media/external
    /images/media/23");   

  13. Intent it = new Intent(Intent.ACTION_SEND);   

  14. it.putExtra("sms_body", "some text");   

  15. it.putExtra(Intent.EXTRA_STREAM, uri);   

  16. it.setType("image/png");   

  17. startActivity(it);   

  18. //需寫號(hào)碼SMS   

  19. Intent it = new Intent(Intent.ACTION_VIEW);   

  20. it.putExtra("sms_body", "The SMS text");   

  21. it.setType("vnd.android-dir/mms-sms");   

  22. startActivity(it);   

  23. //發(fā)送SMS   

  24. Uri uri = Uri.parse("smsto:0800000123");   

  25. Intent it = new Intent(Intent.ACTION_SENDTO, uri);   

  26. it.putExtra("sms_body", "The SMS text");   

  27. startActivity(it);   

  28. //發(fā)送MMS   

  29. Uri uri = Uri.parse("content://media/external/
    images/media/23");   

  30. Intent it = new Intent(Intent.ACTION_SEND);   

  31. it.putExtra("sms_body", "some text");   

  32. it.putExtra(Intent.EXTRA_STREAM, uri);   

  33. it.setType("image/png");   

  34. startActivity(it); 

關(guān)于Android中怎么調(diào)用平臺(tái)功能就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI