Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> android 跳轉進市場的實現代碼

android 跳轉進市場的實現代碼

編輯:關於Android編程

跳轉進市場的代碼
復制代碼 代碼如下:
Intent
 intent = new Intent(Intent.ACTION_VIEW);
2 intent.setData(Uri.parse("market://details?id=" +
 getPackageName()));
3 startActivity(intent);

跳轉進市場搜索的代碼
復制代碼 代碼如下:
Intent
 intent = new Intent(Intent.ACTION_VIEW);
2 intent.setData(Uri.parse("market://search?q=pub:Your
 Publisher Name"));
3 startActivity(intent);

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved