Intent intent =
new Intent()
;
intent.addCategory(Intent.
CATEGORY_LAUNCHER)
;
intent.setAction(Intent.
ACTION_MAIN)
;
intent.setComponent(
new ComponentName(
"com.android.vending", "com.google.android.finsky.activities.LaunchUrlHandlerActivity"))
;
intent.setFlags(Intent.
FLAG_ACTIVITY_NEW_TASK)
;
startActivity(intent)
;
转载请注明原文地址: https://ju.6miu.com/read-1304741.html