如何在Android Java中集成Stripe Payment?

问题描述 投票:0回答:2

我的 Java Android 应用程序需要一个 Stripe 实现,但是对于 Java 中的服务器,我不知道如何使用 Node 或 php 来实现该服务器端,我在他们的文档中找到了一些内容:

https://stripe.com/docs/ payments/accept-a- payment?integration=elements#android-create- payment-intent

但是,服务器端的解释很差。

到目前为止我所写的就是:

<?xml version="1.0" encoding="utf-8"?>
<ScrollView
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:padding="30dp"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    tools:context=".Checkout">

 <LinearLayout
     android:layout_width="match_parent"
     android:layout_height="wrap_content"
     android:orientation="vertical"

     >

     <ImageView
         android:layout_width="100dp"
         android:layout_height="100dp"
         android:src="@drawable/logo"
         android:layout_gravity="center"
         />

     <TextView
         android:id="@+id/youhavetopay"
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"

         android:textSize="22sp"
         android:textColor="@color/colorPrimary"
         android:fontFamily="@font/muli_black"
         android:layout_gravity="center"
         />
     <com.stripe.android.view.CardInputWidget
         android:id="@+id/cardInputWidget"
         android:layout_marginTop="30dp"
         android:layout_width="match_parent"
         android:layout_height="wrap_content"
         />


     <Button

         android:layout_width="wrap_content"
         android:layout_height="wrap_content"
         android:id="@+id/payButton"
         android:layout_gravity="center"
         android:layout_marginTop="20dp"
         />
 </LinearLayout>

</ScrollView>

还有这个

public class Checkout extends AppCompatActivity {

    Button payBtn;
    String message;
    String price;
    TextView text;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
       
        setContentView(R.layout.activity_checkout);

        payBtn = findViewById(R.id.payButton);
        text = findViewById(R.id.youhavetopay);
        Bundle extras = getIntent().getExtras();
        if(extras != null) {
            message = extras.getString("message");
            price = extras.getString("passprice");
        }
        String t = "Pay $"+price;
        payBtn.setText(t);
        text.setText(message);




    }
}

我有这些实现:

    implementation "com.stripe:stripe-java:15.1.0"
    implementation 'com.stripe:stripe-android:15.1.0'
    implementation 'com.squareup.okhttp3:okhttp:4.4.0'
    implementation 'com.google.code.gson:gson:2.8.6'

我真的不明白我必须从他们的文档中做什么。我只想要一个付款按钮,可以从该卡进行付款,如果接受,则在数据库上执行某些操作。简单的付款。

如果您能指导我,我将不胜感激!欢迎任何教程或建议。我尝试从 GitHub 复制,但我看到导入时有很多红线,我迷路了。 预先感谢您!

java android stripe-payments
2个回答
0
投票

此示例包括示例 Android 客户端Java 服务器 实现。您应该能够克隆存储库并按照相应的自述文件来运行这些示例并查看其工作原理。按照指南进行操作,如果您有更具体的问题,请提出。

当然,您需要能够安装和构建 android 和 java 才能运行它。


0
投票

大家早上好。 有人知道如何在 android Studio 中使用 Java 集成 DPO 支付网关的分步资源/代码吗?我们将非常感谢您的回复。

© www.soinside.com 2019 - 2024. All rights reserved.