Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在我的安卓应用程序中连接安卓市场?
我猜你想启动 android 市场应用程序并指向市场上的某个应用程序。
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=com.test.TestApp")); startActivity(intent);
将“com.test.TestApp”替换为您要指向的应用程序的包名。