Android - 前往 Google Play 更新應用程式

摘要:Android - 前往 Google Play 更新應用程式

                String packageName = mActivity.getPackageName();
                Intent intent = new Intent(Intent.ACTION_VIEW, Uri
                        .parse("https://play.google.com/store/apps/details?id=" + packageName));
                mActivity.startActivity(intent);
                mActivity.finish();