1
如何在android應用程序中連接android市場?如何在應用程序中連接android市場?
如何在android應用程序中連接android市場?如何在應用程序中連接android市場?
我猜你想要推出android市場應用程序,並指向市場上的某個應用程序。
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=com.test.TestApp"));
startActivity(intent);
將「com.test.TestApp」替換爲您要指向的應用程序的包名稱。
你的意思是你想啓動android市場到某個頁面並退出你的應用程序? – schwiz 2010-09-10 22:08:39