日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 运维知识 > Android >内容正文

Android

android短信uri,Android开发,URI 如:发短信,发彩信,调用通讯录等

發布時間:2023/12/20 Android 22 豆豆
生活随笔 收集整理的這篇文章主要介紹了 android短信uri,Android开发,URI 如:发短信,发彩信,调用通讯录等 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

一、直接撥打電話,與三不同的是,這個直接撥打電話,而不是打開撥號界面

Uri uri = Uri.parse("tel:10086");

Intent intent = new Intent(Intent.ACTION_CALL, uri);

二、打開撥號界面,類型是Intent.ACTION_DIAL

Uri uri = Uri.parse("tel:10086");

Intent intent = new Intent(Intent.ACTION_DIAL, uri);

三、打開一個網頁,類別是Intent.ACTION_VIEW

Uri uri = Uri.parse("http://www.android-study.net/");

Intent intent = new Intent(Intent.ACTION_VIEW, uri);

四、卸載一個應用,Intent的類別是Intent.ACTION_DELETE

Uri uri = Uri.fromParts("package", "xxx", null);

Intent intent = new Intent(Intent.ACTION_DELETE, uri);

五、打開地圖并定位到一個點

Uri uri = Uri.parse("geo:52.76,-79.0342");

Intent intent = new Intent(Intent.ACTION_VIEW, uri);

六、播放音頻文件

Uri uri = Uri.parse("file:///sdcard/download/everything.mp3");

Intent intent = new Intent(Intent.ACTION_VIEW, uri);

intent.setType("audio/mp3");

七、安裝應用程序,Intent的類別是Intent.ACTION_PACKAGE_ADDED

Uri uri = Uri.fromParts("package", "xxx", null);

Intent intent = new Intent(Intent.ACTION_PACKAGE_ADDED, uri);

八、打開發郵件界面

Uri uri= Uri.parse("mailto:androidstudynet@126.com");

Intent intent = new Intent(Intent.ACTION_SENDTO, uri);

九、發郵件,與上一個不同這里是將郵件發送出去

Intent intent = new Intent(Intent.ACTION_SEND);

String[] tos = { "androidstudynet@126.com" };

String[] ccs = { "aaa@126.com" };

intent.putExtra(Intent.EXTRA_EMAIL, tos);

intent.putExtra(Intent.EXTRA_CC, ccs);

intent.putExtra(Intent.EXTRA_TEXT, "I come from http://www.android-study.net");

intent.putExtra(Intent.EXTRA_SUBJECT, "http://www.android-study.net");intent.setType("message/rfc882");

Intent.createChooser(intent, "Choose Email Client");

//發送帶附件的郵件

Intent intent = new Intent(Intent.ACTION_SEND);

intent.putExtra(Intent.EXTRA_SUBJECT, "The email subject text");

intent.putExtra(Intent.EXTRA_STREAM, "file:///sdcard/mynusic.mp3");

intent.setType("audio/mp3");

startActivity(Intent.createChooser(intent, "Choose Email Client"));

十、直接發短信

Uri uri= Uri.parse("smsto://100861");

Intent intent = new Intent(Intent.ACTION_SENDTO, uri);

intent.putExtra("sms_body", "安卓發送郵件測試 http://www.android-study.net");

十一、發彩信

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

Intent intent = new Intent(Intent.ACTION_SEND);

intent.putExtra("sms_body", "安卓發送郵件測試 http://www.android-study.net");

intent.putExtra(Intent.EXTRA_STREAM, uri);

intent.setType("image/png");

十二、發短信

Uri uri= Uri.parse("tel:10086");

Intent intent = new Intent(Intent.ACTION_VIEW, uri);

intent.putExtra("sms_body", "安卓發送郵件測試 http://www.android-study.net");

intent.setType("vnd.Android-dir/mms-sms");

十三、調用相冊

public static final String MIME_TYPE_IMAGE_JPEG = "image/*";

public static final int ACTIVITY_GET_IMAGE = 0;

Intent getImage = new Intent(Intent.ACTION_GET_CONTENT);

getImage.addCategory(Intent.CATEGORY_OPENABLE);

getImage.setType(MIME_TYPE_IMAGE_JPEG);

startActivityForResult(getImage, ACTIVITY_GET_IMAGE);

十四、# Market 相關

1 //尋找某個應用

Uri uri = Uri.parse("market://search?q=pname:pkg_name");

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

startActivity(it);

2 //顯示某個應用的相關信息

Uri uri = Uri.parse("market://details?id=app_id");

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

startActivity(it);

十五、安裝指定apk

public void setupAPK(String apkname){

String fileName = Environment.getExternalStorageDirectory() + "/" + apkname;

Intent intent = new Intent(Intent.ACTION_VIEW);

intent.setDataAndType(Uri.fromFile(new File(fileName)), "application/vnd.android.package-archive");

mService.startActivity(intent);

}

十六、路徑規劃

Uri uri = Uri.parse("http://maps.google.com/maps?f=d&saddr=startLat%20startLng&daddr=endLat%20endLng&hl=en");

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

startActivity(it);

十七、進入聯系人頁面

Intent intent = new Intent();

intent.setAction(Intent.ACTION_VIEW);

intent.setData(People.CONTENT_URI);

startActivity(intent);

十八、查看指定聯系人

Uri personUri = ContentUris.withAppendedId(People.CONTENT_URI, info.id);// info.id聯系人ID

Intent intent = new Intent();

intent.setAction(Intent.ACTION_VIEW);

intent.setData(personUri);

startActivity(intent);

十九、調用系統相機應用程序,并存儲拍下來的照片

Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);

time = Calendar.getInstance().getTimeInMillis();

intent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(new File(Environment.getExternalStorageDirectory().getAbsolutePath()+"/tucue", time + ".jpg")));

startActivityForResult(intent, ACTIVITY_GET_CAMERA_IMAGE);

二十、調用瀏覽器打開網頁

1.調用瀏覽器打開網頁

Intent it = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.android-study.net"));

it.setClassName("com.android.browser", "com.android.browser.BrowserActivity");

startActivity(it);

2.調用瀏覽器打開本地網頁

Intent intent=new Intent();

intent.setAction("android.intent.action.VIEW");

Uri localurl= Uri.parse("content://com.android.htmlfileprovider/sdcard/localweb.html");

intent.setData(localurl);

intent.setClassName("com.android.browser", "com.android.browser.BrowserActivity");

startActivity(intent);

總結

以上是生活随笔為你收集整理的android短信uri,Android开发,URI 如:发短信,发彩信,调用通讯录等的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。