Android 一些常用跳转应用(其实查源码是一样的但留着Copy的时候方便)

简介: 显示网页 Java代码 Uri uri = Uri.parse("http://google.com"); Intent it = new Intent(Intent.ACTION_VIEW, uri); startActivity(it); Uri uri = Uri.
显示网页
Java代码
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);


显示地图
Java代码

Uri uri = Uri.parse("geo:38.899533,-77.036476");       
Intent it = new Intent(Intent.ACTION_VIEW, uri);        
startActivity(it);        
//其 他 geo URI 範例       
//geo:latitude,longitude       
//geo:latitude,longitude?z=zoom       
//geo:0,0?q=my+street+address       
//geo:0,0?q=business+near+city       
//google.streetview:cbll=lat,lng&cbp=1,yaw,,pitch,zoom&mz=mapZoom     
Uri uri = Uri.parse("geo:38.899533,-77.036476");     
Intent it = new Intent(Intent.ACTION_VIEW, uri);      startActivity(it);      //其他 geo URI 範例     //geo:latitude,longitude     //geo:latitude,longitude?z=zoom     //geo:0,0?q=my+street+address     //geo:0,0?q=business+near+city     //google.streetview:cbll=lat,lng&cbp=1,yaw,,pitch,zoom&mz=mapZoom

拨打电话
Java代码

//叫 出撥號程式       
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" />

发送SMS/MMS
Java代码

//需 写号码SMS      
Intent it = new Intent(Intent.ACTION_VIEW);       
it.putExtra("sms_body", "The SMS text");        
it.setType("vnd.android-dir/mms-sms");       
startActivity(it);      
//发送 SMS       
Uri uri = Uri.parse("smsto:0800000123");       
Intent it = new Intent(Intent.ACTION_SENDTO, uri);       
it.putExtra("sms_body", "The SMS text");       
startActivity(it);      
//发送 MMS       
Uri uri = Uri.parse("content://media/external/images/media/23");       
Intent it = new Intent(Intent.ACTION_SEND);        
it.putExtra("sms_body", "some text");        
it.putExtra(Intent.EXTRA_STREAM, uri);       
it.setType("image/png");        
startActivity(it);    

//需写号码SMS    Intent it = new Intent(Intent.ACTION_VIEW);     it.putExtra("sms_body", "The SMS text");      
it.setType("vnd.android-dir/mms-sms");     
startActivity(it);    //发送SMS     
Uri uri = Uri.parse("smsto:0800000123");     
Intent it = new Intent(Intent.ACTION_SENDTO, uri);     it.putExtra("sms_body", "The SMS text");     
startActivity(it);    //发送MMS     
Uri uri = Uri.parse("content://media/external/images/media/23");     Intent it = new Intent(Intent.ACTION_SEND);      it.putExtra("sms_body", "some text");      it.putExtra(Intent.EXTRA_STREAM, uri);     it.setType("image/png");      
startActivity(it);


发送EMAIL
Java代码
Uri uri = Uri.parse("mailto:xxx@abc.com");       
Intent it = new Intent(Intent.ACTION_SENDTO, uri);       
startActivity(it);      
Intent it = new Intent(Intent.ACTION_SEND);       
it.putExtra(Intent.EXTRA_EMAIL, "me@abc.com");       
it.putExtra(Intent.EXTRA_TEXT, "The email body text");       
it.setType("text/plain");       
startActivity(Intent.createChooser(it, "Choose Email Client"));      
Intent it=new Intent(Intent.ACTION_SEND);         
String[] tos={"me@abc.com"};         
String[] ccs={"you@abc.com"};         
it.putExtra(Intent.EXTRA_EMAIL, tos);         
it.putExtra(Intent.EXTRA_CC, ccs);         
it.putExtra(Intent.EXTRA_TEXT, "The email body text");         
it.putExtra(Intent.EXTRA_SUBJECT, "The email subject text");         
it.setType("message/rfc822");         
startActivity(Intent.createChooser(it, "Choose Email Client"));       
/传送附 件       
Intent it = new Intent(Intent.ACTION_SEND);       
it.putExtra(Intent.EXTRA_SUBJECT, "The email subject text");       
it.putExtra(Intent.EXTRA_STREAM, "file:///sdcard/mysong.mp3");       
sendIntent.setType("audio/mp3");       
startActivity(Intent.createChooser(it, "Choose Email Client"));    

Uri uri = Uri.parse("mailto:xxx@abc.com");     
Intent it = new Intent(Intent.ACTION_SENDTO, uri);     startActivity(it);    
Intent it = new Intent(Intent.ACTION_SEND);     it.putExtra(Intent.EXTRA_EMAIL, "me@abc.com");     it.putExtra(Intent.EXTRA_TEXT, "The email body text");     it.setType("text/plain");     
startActivity(Intent.createChooser(it, "Choose Email Client"));    Intent it=new Intent(Intent.ACTION_SEND);       
String[] tos={"me@abc.com"};       
String[] ccs={"you@abc.com"};       
it.putExtra(Intent.EXTRA_EMAIL, tos);       it.putExtra(Intent.EXTRA_CC, ccs);       it.putExtra(Intent.EXTRA_TEXT, "The email body text");       it.putExtra(Intent.EXTRA_SUBJECT, "The email subject text");       it.setType("message/rfc822");       startActivity(Intent.createChooser(it, "Choose Email Client"));     //传送附件     
Intent it = new Intent(Intent.ACTION_SEND);     it.putExtra(Intent.EXTRA_SUBJECT, "The email subject text");     it.putExtra(Intent.EXTRA_STREAM, "file:///sdcard/mysong.mp3");     sendIntent.setType("audio/mp3");     startActivity(Intent.createChooser(it, "Choose Email Client"));


播放多媒体
Java代码

Intent it = new Intent(Intent.ACTION_VIEW);       
Uri uri = Uri.parse("file:///sdcard/song.mp3");       
it.setDataAndType(uri, "audio/mp3");       
startActivity(it);      
Uri uri = Uri.withAppendedPath(MediaStore.Audio.Media.INTERNAL_CONTENT_URI, "1");       
Intent it = new Intent(Intent.ACTION_VIEW, uri);       
startActivity(it);     

Intent it = new Intent(Intent.ACTION_VIEW);     
Uri uri = Uri.parse("file:///sdcard/song.mp3");     it.setDataAndType(uri, "audio/mp3");     
startActivity(it);   
Uri uri = Uri.withAppendedPath(MediaStore.Audio.Media.INTERNAL_CONTENT_URI, "1");     
Intent it = new Intent(Intent.ACTION_VIEW, uri);     startActivity(it);


Android Market
Java代码
//寻 找应用      
Uri uri = Uri.parse("market://search?q=pname:pkg_name");       
Intent it = new Intent(Intent.ACTION_VIEW, uri);       
startActivity(it);       
//where pkg_name is the full package path for an application      
//显示应用详细列 表     
Uri uri = Uri.parse("market://details?id=app_id");       
Intent it = new Intent(Intent.ACTION_VIEW, uri);       
startActivity(it);       
//where app_id is the application ID, find the ID        
//by clicking on your application on Market home        
 //page, and notice the ID from the address bar    

//寻找应用    
Uri uri = Uri.parse("market://search?q=pname:pkg_name");    
Intent it = new Intent(Intent.ACTION_VIEW, uri);     startActivity(it);     //where pkg_name is the full package path for an application    //显示应用详细列表   
Uri uri = Uri.parse("market://details?id=app_id");     
Intent it = new Intent(Intent.ACTION_VIEW, uri);     startActivity(it);     //where app_id is the application ID, find the ID      //by clicking on your application on Market home      
//page, and notice the ID from the address bar


卸载应用
Java代码

Uri uri = Uri.fromParts("package", strPackageName, null);        
Intent it = new Intent(Intent.ACTION_DELETE, uri);        
startActivity(it);      
Uri uri = Uri.fromParts("package", strPackageName, null);      
Intent it = new Intent(Intent.ACTION_DELETE, uri);      startActivity(it);


安装应用
Java代码

Uri uri = Uri.parse("url_of_apk_file");       
Intent it = new Intent(Intent.ACTION_VIEW, uri);       
it.setData(uri);       
it.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);       
it.setClassName("com.android.packageinstaller",                       "com.android.packageinstaller.PackageInstallerActivity");       
startActivity(it);        
//make sure the url_of_apk_file is readable for all users   


//需要在AndroidManifest.xml文件中分配相应权限。
目录
相关文章
Flutter 与原生模块(Android 和 iOS)之间的通信机制,包括方法调用、事件传递等,分析了通信的必要性、主要方式、数据传递、性能优化及错误处理,并通过实际案例展示了其应用效果,展望了未来的发展趋势
本文深入探讨了 Flutter 与原生模块(Android 和 iOS)之间的通信机制,包括方法调用、事件传递等,分析了通信的必要性、主要方式、数据传递、性能优化及错误处理,并通过实际案例展示了其应用效果,展望了未来的发展趋势。这对于实现高效的跨平台移动应用开发具有重要指导意义。
198 4
|
29天前
|
探索安卓开发:打造你的首个天气应用
在这篇技术指南中,我们将一起潜入安卓开发的海洋,学习如何从零开始构建一个简单的天气应用。通过这个实践项目,你将掌握安卓开发的核心概念、界面设计、网络编程以及数据解析等技能。无论你是初学者还是有一定基础的开发者,这篇文章都将为你提供一个清晰的路线图和实用的代码示例,帮助你在安卓开发的道路上迈出坚实的一步。让我们一起开始这段旅程,打造属于你自己的第一个安卓应用吧!
56 14
探索安卓开发:打造你的第一款应用
在数字时代的浪潮中,每个人都有机会成为创意的实现者。本文将带你走进安卓开发的奇妙世界,通过浅显易懂的语言和实际代码示例,引导你从零开始构建自己的第一款安卓应用。无论你是编程新手还是希望拓展技术的开发者,这篇文章都将为你打开一扇门,让你的创意和技术一起飞扬。
打造个性化安卓应用:从设计到开发的全面指南
在这个数字时代,拥有一个定制的移动应用不仅是一种趋势,更是个人或企业品牌的重要延伸。本文将引导你通过一系列简单易懂的步骤,从构思你的应用理念开始,直至实现一个功能齐全的安卓应用。无论你是编程新手还是希望拓展技能的开发者,这篇文章都将为你提供必要的工具和知识,帮助你将创意转化为现实。
探索安卓开发:构建你的第一个“Hello World”应用
在安卓开发的浩瀚海洋中,每个新手都渴望扬帆起航。本文将作为你的指南针,引领你通过创建一个简单的“Hello World”应用,迈出安卓开发的第一步。我们将一起搭建开发环境、了解基本概念,并编写第一行代码。就像印度圣雄甘地所说:“你必须成为你希望在世界上看到的改变。”让我们一起开始这段旅程,成为我们想要见到的开发者吧!
35 0
探索安卓开发之旅:打造你的第一个天气应用
【10月更文挑战第30天】在这个数字时代,掌握移动应用开发技能无疑是进入IT行业的敲门砖。本文将引导你开启安卓开发的奇妙之旅,通过构建一个简易的天气应用来实践你的编程技能。无论你是初学者还是有一定经验的开发者,这篇文章都将成为你宝贵的学习资源。我们将一步步地深入到安卓开发的世界中,从搭建开发环境到实现核心功能,每个环节都充满了发现和创造的乐趣。让我们开始吧,一起在代码的海洋中航行!
打造个性化安卓应用:从设计到实现
【10月更文挑战第30天】在数字化时代,拥有一个个性化的安卓应用不仅能够提升用户体验,还能加强品牌识别度。本文将引导您了解如何从零开始设计和实现一个安卓应用,涵盖用户界面设计、功能开发和性能优化等关键环节。我们将以一个简单的记事本应用为例,展示如何通过Android Studio工具和Java语言实现基本功能,同时确保应用流畅运行。无论您是初学者还是希望提升现有技能的开发者,这篇文章都将为您提供宝贵的见解和实用的技巧。
Android源码下载
Android源码下载
601 0
AI助理

你好,我是AI助理

可以解答问题、推荐解决方案等