Thursday 7 June 2012

Integrate Paypal in Android Application

First Create New Android Project and then Add below Code.

MainActivity.java

public class PizzaMain extends Activity implements OnClickListener {
  /** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);

PayPal ppObj = PayPal.initWithAppID(this.getBaseContext(), "APP-80W284485P519543T", PayPal.ENV_NONE);

CheckoutButton launchPayPalButton = ppObj.getCheckoutButton(this, PayPal.BUTTON_152x33, CheckoutButton.TEXT_PAY);
  RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);

  params.addRule(RelativeLayout.CENTER_HORIZONTAL);

launchPayPalButton.setLayoutParams(params);
launchPayPalButton.setOnClickListener(this);

((RelativeLayout) findViewById(R.id.mRlayout1)).addView(launchPayPalButton);
    }

@Override
public void onClick(View v) {
// TODO Auto-generated method stub
PayPalPayment newPayment = new PayPalPayment();
char val[] = { '5', '0' };
BigDecimal obj_0 = new BigDecimal(val);
newPayment.setSubtotal(obj_0);
newPayment.setCurrencyType("USD");
newPayment.setRecipient("my@email.com");
newPayment.setMerchantName("My Company");
Intent paypalIntent = PayPal.getInstance().checkout(newPayment, this);
this.startActivityForResult(paypalIntent, 1);
}

@SuppressWarnings("unused")
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
switch (resultCode) {
case Activity.RESULT_OK:
// The payment succeeded
String payKey = data.getStringExtra(PayPalActivity.EXTRA_PAY_KEY);
// Tell the user their payment succeeded
break;
case Activity.RESULT_CANCELED:
// The payment was canceled
// Tell the user their payment was canceled
break;
case PayPalActivity.RESULT_FAILURE:
// The payment failed -- we get the error from the EXTRA_ERROR_ID
// and EXTRA_ERROR_MESSAGE
String errorID = data.getStringExtra(PayPalActivity.EXTRA_ERROR_ID);
String errorMessage = data.getStringExtra(PayPalActivity.EXTRA_ERROR_MESSAGE);
// Tell the user their payment was failed.
               break;
       }
   }
}

And Give below permissions into your AndroidManifest.xml file.

<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.READ_PHONE_STATE"/>

And Add Activity into your AndroidManifest.xml file.

<activity
    android:name="com.paypal.android.MEP.PayPalActivity"
    android:configChanges="keyboardHidden|orientation"
    android:theme="@android:style/Theme.Translucent.NoTitleBar" />

Add PayPal_MPL.jar Jar File as a Refrence Library into Your application

Enjoy :-)

Don’t forget to provide feedback or follow this blog, if you find this blog is useful.

11 comments:

  1. its good ....

    ReplyDelete
  2. is there any way to use paypal without authentication it ?

    ReplyDelete
  3. Really it helped a lot..but i couldn understand your code ..can u please explain it clearly

    ReplyDelete
  4. ITS NOT WORKING BRO .......

    ReplyDelete
  5. can i have a complete code i am beginner in android development so i want to integrate paypal will you please help me

    ReplyDelete
  6. change method onClick for this :

    private void invokeSimplePayment() {
    try {
    PayPalPayment newPayment = new PayPalPayment();
    newPayment.setSubtotal(BigDecimal.valueOf(100));
    newPayment.setCurrencyType("USD");
    newPayment.setRecipient("gianzrivera@gmail.com");
    newPayment.setMerchantName("My Company");
    PayPal pp = PayPal.getInstance();
    if (pp == null) {
    pp = PayPal.initWithAppID(this, "APP-80W284485P519543T", PayPal.ENV_SANDBOX);
    }
    // Intent paypalIntent = PayPal.getInstance().checkout(newPayment, this);
    Intent paypalIntent = pp.checkout(newPayment, this);
    this.startActivityForResult(paypalIntent, 1);
    } catch (Exception e) {
    e.printStackTrace();
    Log.e("error", e.getMessage());
    }
    }

    ReplyDelete
  7. got error
    E/PayPalService: SERVER_COMMUNICATION_ERROR

    ReplyDelete
  8. can you make payout with this integration. I was looking for payout. please help if you have done that before

    ReplyDelete