2012-09-04 43 views

回答

0

啓動的意圖與應用程序的包名開啓Play商店應用程序,你想是這樣的:

Intent intent = new Intent(Intent.ACTION_VIEW); 
intent.setData(Uri.parse("market://details?id=com.android.example")); 
startActivity(intent); 
相關問題