码迷,mamicode.com
首页 > 其他好文 > 详细

8、?系统窗口的调用

时间:2014-08-22 12:53:39      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:android   style   color   io   strong   文件   ar   art   div   

? 调用系统窗口

调用Google搜索 

Intent intent = new Intent();

intent.setAction(Intent.ACTION_WEB_SEARCH);

intent.putExtra(SearchManager.QUERY,"searchString");

startActivity(intent); 

 

? 获取所有可调用的窗口及其调用细节 

 

分析Android源代码
1. AndroidManifest.xml 2. 查看相应的源代码

安装APK文件 

Intent intent = new Intent(Intent.ACTION_INSTALL_PACKAGE);

intent.setDataAndType(Uri.fromFile(new File("/sdcard/qq.apk")),

"application/vnd.android.package-archive");

startActivity(intent); 

 

8、?系统窗口的调用

标签:android   style   color   io   strong   文件   ar   art   div   

原文地址:http://www.cnblogs.com/androidsj/p/3929101.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!