Hi @JimmyHill few days ago i was in same situation and this link helped me :
http://knowledge.itdoctorz.com/141/
Use below code:
Public void onClick (View v) {
PayPalPayment payment = new PayPalPayment();
payment.setSubtotal(new BigDecimal(“8.25″));
payment.setCurrencyType(“USD”);
payment.setRecipient(“.....@gmail.com”);
payment.setPaymentType(PayPal.PAYMENT_TYPE_GOODS);
Intent checkoutIntent = PayPal.getInstance().checkout(payment, this);
startActivityForResult(checkoutIntent, 1);
}
I hope this link will help you :)
Update::
Added the new link to the answer which have a detailed steps to integrate payment gateway feature in android
Link :: https://developer.paypal.com/docs/classic/mobile/ht_mpl-itemPayment-Android/