//寻找某个应用  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

更多相关文章

  1. 代码中设置drawableleft
  2. android 3.0 隐藏 系统标题栏
  3. Android开发中activity切换动画的实现
  4. Android(安卓)学习 笔记_05. 文件下载
  5. Android中直播视频技术探究之—摄像头Camera视频源数据采集解析
  6. 技术博客汇总
  7. android 2.3 wifi (一)
  8. AndRoid Notification的清空和修改
  9. Android中的Chronometer

随机推荐

  1. Android编译本地C++程序方法
  2. Android下app生成coredump方法
  3. Android SystemServer学习
  4. 【Android代码片段之八】监听Android屏幕
  5. Android官方开发文档Training系列课程中
  6. Android开发指南(38) —— Status Bar No
  7. Ubuntu14.04 安装Android studio
  8. android MediaCodec ACodec
  9. android本地推送(退出app后依然可以)
  10. AutoCompleteTextView(自动提示)