-1
我有應用程序需要通知用戶他需要更新Google Play服務並將其重定向到Play服務應用頁面上的Play市場。你可以幫我嗎?先謝謝你!如何在Google Play服務頁面上打開Play Market?
我有應用程序需要通知用戶他需要更新Google Play服務並將其重定向到Play服務應用頁面上的Play市場。你可以幫我嗎?先謝謝你!如何在Google Play服務頁面上打開Play Market?
將此放在您的清單
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
這個代碼在你的活動
// Check status of Google Play Services
int status = GooglePlayServicesUtil.isGooglePlayServicesAvailable(this);
// Check Google Play Service Available
try {
if (status != ConnectionResult.SUCCESS) {
GooglePlayServicesUtil.getErrorDialog(status, this, RQS_GooglePlayServices).show();
}
} catch (Exception e) {
Log.e("Error: GooglePlayServiceUtil: ", "" + e);
}
試試這個代碼
final String appPackageName = getPackageName(); // getPackageName() from Context or Activity object
try {
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=" + appPackageName)));
}
catch (android.content.ActivityNotFoundException anfe) {
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("http://play.google.com/store/apps/details?id=" + appPackageName)));
}