如何在应用程序中连接Android市场?

时间:2010-09-10 21:58:35

标签: android google-play

如何在我的Android应用程序中连接android市场?

1 个答案:

答案 0 :(得分:5)

我猜你想推出Android市场应用并指向市场上的某个应用程序。

Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=com.test.TestApp"));
startActivity(intent);

将“com.test.TestApp”替换为您要指向的应用程序的包名称。