2011-10-13 57 views
1

我在android工作。我正在設計一個程序從我的http服務器下載文件。在下載文件付款之前應該完成。下載前支付寶功能

這是我的第一個佈局: - enter image description here

當我點擊在PayPal按鈕此PayPal網站被打開: -

enter image description here

,所以我想知道,後付款是這個網站返回的東西的基礎上,我可以允許或不允許用戶下載。

我想知道用戶付了些東西嗎?請幫助我在android的這個paypal概念。

預先感謝您...

+0

你看看PayPal API文檔嗎? https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&content_ID=developer/howto_gateway_payflowgateway –

回答

0

我已經通過從一本書中獲得幫助完成了這項工作。

這是用於我的問題解決方案的代碼: -

@覆蓋

public void onActivityResult(int requestCode, int resultCode, Intent data) { 

switch(resultCode) { 

case Activity.RESULT_OK: 

//The payment succeeded 



Toast.makeText(this,"Payment has done successfully",Toast.LENGTH_SHORT).show(); 

//Tell the user their payment succeeded 

休息;

case Activity.RESULT_CANCELED: 


    Toast.makeText(this,"Payment has cancled",Toast.LENGTH_SHORT).show(); 
break; 

case PayPalActivity.RESULT_FAILURE: 

    flag=false; 
    Toast.makeText(this,"Sorry Payment failed",Toast.LENGTH_SHORT).show(); 
    }