在 Paypal 移动 SDK 中禁用信用卡

Disable Credit Card in Paypal mobile SDK

我在Android中集成了Paypal移动SDK。由于我的帐户无法使用直接信用卡付款。我们的客户未能使用信用卡按钮付款。 我可以知道如何 disable/remove 我的应用程序中的信用卡按钮吗?

关于如何移除信用卡选项,您可以在 PaypalConfiguration 对象中将 acceptCreditCards 设置为 false:

例如:

private static PayPalConfiguration config = new PayPalConfiguration()
        …….
        .acceptCreditCards(false)
        .merchantName("Hipster Store")
        .merchantPrivacyPolicyUri(Uri.parse("https://www.example.com/privacy"))
        .merchantUserAgreementUri(Uri.parse("https://www.example.com/legal"));

注意: acceptCreditCards(boolean acceptCreditCards):可选的布尔值,表示支持信用卡。

Mobile SDK Java Doc

以上设置将帮助您disable/remove应用中的信用卡选项。