2010-09-10 94 views

回答

5

我猜你想要推出android市場應用程序,並指向市場上的某個應用程序。

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

將「com.test.TestApp」替換爲您要指向的應用程序的包名稱。

相關問題