91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android中怎么調用平臺功能

發布時間:2021-06-24 16:13:34 來源:億速云 閱讀:135 作者:Leah 欄目:移動開發

這篇文章給大家介紹Android中怎么調用平臺功能,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

Android調用平臺功能之顯示網頁

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調用平臺功能之顯示地圖

  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 範例   

  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 範例   

  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調用平臺功能之撥打電話

//叫出撥號程式   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);   //用這個,要在 AndroidManifest.xml 中,加上   //< uses-permission id="android.permission.CALL_PHONE" />   //叫出撥號程式   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);   //用這個,要在 AndroidManifest.xml 中,加上   //< uses-permission id="android.permission.CALL_PHONE" />

Android調用平臺功能之發送SMS/MMS

  1. //需寫號碼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. //發送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. //發送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. //需寫號碼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. //發送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. //發送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); 

關于Android中怎么調用平臺功能就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

醴陵市| 如皋市| 贵定县| 中超| 镇康县| 兴宁市| 山西省| 名山县| 买车| 武夷山市| 邻水| 东城区| 大悟县| 清镇市| 肥乡县| 瓦房店市| 自贡市| 兴仁县| 石屏县| 山丹县| 萨嘎县| 揭东县| 渝北区| 溧阳市| 安新县| 景洪市| 平和县| 长阳| 仁寿县| 江西省| 英超| 湘潭市| 化隆| 荥经县| 昔阳县| 禄丰县| 曲周县| 汝城县| 景洪市| 吉木萨尔县| 宁武县|