我一直在阅读这个网站: http: //developer.android.com/google/play/billing/billing_subscriptions.html 因为我读到“目前,应用内结算 API 不支持以编程方式从内部取消订阅购买应用程序”,我想将用户重定向到此页面以管理他自己的订阅。
我无法找到如何从应用程序打开订阅页面。我正在考虑像外部链接一样打开它:
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.google.com"));
startActivity(browserIntent);
但是我什至不知道我需要输入的链接... -_-
提前感谢您的回答!:)