1

I am trying to open the Google Play Store Account page in my own app in order to users can confirm their payment method or order history.

enter image description here

How can I do it? Please help me. I appreciate your help in advance.

Vadim Kotov
  • 8,084
  • 8
  • 48
  • 62
Miguel A.
  • 375
  • 5
  • 13
  • Possible duplicate of [How to open the Google Play Store directly from my Android application?](http://stackoverflow.com/questions/11753000/how-to-open-the-google-play-store-directly-from-my-android-application) – Dipu Raj Nov 21 '16 at 04:41
  • Thank you. but my problem is difference from that. I am going to open Google Account page. Not application page on Play Store. – Miguel A. Nov 21 '16 at 04:45
  • I used this method to open playstore `private void openPlaystore(Context context) { final Uri marketUri = Uri.parse("market://details?id=" + context.getPackageName()); try { context.startActivity(new Intent(Intent.ACTION_VIEW, marketUri)); } catch (android.content.ActivityNotFoundException ex) { Toast.makeText(context, "Coudn't find PlayStore on this device", Toast.LENGTH_SHORT).show(); } }` – Basi Nov 21 '16 at 05:11

1 Answers1

3

Maybe this is what you are looking for.

startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("https://play.google.com/store/account")));
user7716600
  • 126
  • 5