2011-05-19 61 views

回答

1

是的。试试这个:

Intent intent = new Intent(Intent.ACTION_VIEW, 
    Uri.parse("https://market.android.com/details?id=com.hg.cyberlords")); 

c.addFlags(Intent.FLAG_ACTIVITY_NO_HISTORY); 
c.startActivity(intent); 

这将打开与“Cyber​​lords”应用程序的市场应用程序。

相关问题