【问题标题】:How to pass data in a class to another member?如何将类中的数据传递给另一个成员?
【发布时间】:2013-01-28 12:42:02
【问题描述】:

我有这个代码,我正在尝试将 this.thecost 传递给 public void click() 方法,但它看起来不起作用,因为我在单击 paypal 按钮时收到“Paymnet Failed”。

我做错了什么?

顺便问一下,private {}private void {} 都叫什么 - 所有那些看起来像 function() 的东西?

private void initUI(int theprice) {

        launchPayPalButton = mPayPal.getCheckoutButton(this, 
                PayPal.BUTTON_278x43, CheckoutButton.TEXT_PAY);

        LinearLayout.LayoutParams params = new
                LinearLayout.LayoutParams(LayoutParams.WRAP_CONTENT, 
                        LayoutParams.WRAP_CONTENT);

        params.bottomMargin = theprice;
        this.thecost = theprice;

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

        ((LinearLayout)findViewById(R.id.main_layout2)).addView(launchPayPalButton);
    }

    public void onClick(View v) {
        payWithPaypal(this.thecost);
    }


private void payWithPaypal(Integer gg) {
        PayPalPayment newPayment = new PayPalPayment();
        BigDecimal bigDecimal=new BigDecimal(gg);
        newPayment.setSubtotal(bigDecimal);
        newPayment.setCurrencyType(Currency.getInstance(Locale.US));
        newPayment.setRecipient("email@hotmail.com");
        newPayment.setMerchantName("My Merchant");
        Intent paypalIntent = PayPal.getInstance().checkout(newPayment, this);
        this.startActivityForResult(paypalIntent, 1);
    }

    @Override
    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        super.onActivityResult(requestCode, resultCode, data);

        switch(resultCode) {
        case Activity.RESULT_OK:
            String payKey = data.getStringExtra(PayPalActivity.EXTRA_PAY_KEY);
            data.getStringExtra(PayPalActivity.EXTRA_PAY_KEY);
            Toast.makeText(this,"Paymnet Successful",Toast.LENGTH_LONG).show();
            break;
        case Activity.RESULT_CANCELED:
            Toast.makeText(this,"Paymnet Cancel",Toast.LENGTH_LONG).show();
            break;
        case PayPalActivity.RESULT_FAILURE:
            Toast.makeText(this,"Paymnet Failed",Toast.LENGTH_LONG).show();
            String errorID = 
            data.getStringExtra(PayPalActivity.EXTRA_ERROR_ID);
            String errorMessage = 
                    data.getStringExtra(PayPalActivity.EXTRA_ERROR_MESSAGE);
            break;

        }

已编辑:我在 oncreate 方法中调用 initUI()

再次编辑:我将全局变量更改为“双倍”,因为价格通常有小数位。 现在我试着为这个值敬酒,我更清楚地看到了错误。 Toast 显示一条消息,表明传递的值为“0.0”。因此,出现“付款失败”和无效付款的错误。

int eprice;
    double thecost;    
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.detail);

    //Data mSource = new Data;
    Intent myLocalIntent = getIntent();
    Bundle myBundle = myLocalIntent.getExtras();



    eprice = myBundle.getInt("eprice");
    String epricetxt = myBundle.getString("eprice");

    Adapter mAdapter = new Adapter(this, mSource);
    //details = (Data) mAdapter.getItem(pos);





    TextView theprice = (TextView) findViewById(R.id.priceTxt);
    theprice.setText("Price: $" + epricetxt);





    this.setCost(eprice);
    this.thecost = eprice;



    //Paypal
    mPayPal=PayPal.initWithAppID(this,Constants.PAYPAL_APP_ID,PayPal.ENV_SANDBOX);

    initUI(eprice);

}

private void initUI(int theprice) {

        launchPayPalButton = mPayPal.getCheckoutButton(this, 
                PayPal.BUTTON_278x43, CheckoutButton.TEXT_PAY);

        LinearLayout.LayoutParams params = new
                LinearLayout.LayoutParams(LayoutParams.WRAP_CONTENT, 
                        LayoutParams.WRAP_CONTENT);

        params.bottomMargin = theprice;
        this.thecost = theprice;
        launchPayPalButton.setLayoutParams(params);
        launchPayPalButton.setOnClickListener(this);

        ((LinearLayout)findViewById(R.id.main_layout2)).addView(launchPayPalButton);
    }

    public void onClick(View v) {
        //
        payWithPaypal(getCost());
    }

    public void setCost(int cost) {
        this.thecost = cost;
    }

    public double getCost() {
        return this.thecost;
    }


    private void payWithPaypal(Double gg) {
        PayPalPayment newPayment = new PayPalPayment();
        Toast.makeText(getApplicationContext(),gg.toString(), Toast.LENGTH_LONG).show();
        BigDecimal bigDecimal=new BigDecimal(gg);
        newPayment.setSubtotal(bigDecimal);
        newPayment.setCurrencyType(Currency.getInstance(Locale.US));
        newPayment.setRecipient("email@hotmail.com");
        newPayment.setMerchantName("My Merchant");
        Intent paypalIntent = PayPal.getInstance().checkout(newPayment, this);
        this.startActivityForResult(paypalIntent, 1);
    }

【问题讨论】:

  • 您确定失败是因为成本而不是其他原因吗? errorMessage 中有什么内容?
  • 似乎'thecost'字段没有问题。您是否检查过您在 onActivityResult() 中收到的“errorID”和“errorMessage”?
  • hMM...我检查但没有错误。但我想知道为什么当我把 public void onClick(View v) { payWithPaypal(10); } 有用。但是当我把 this.thecost 放进去时,它没有用
  • @user2041851 你从哪里调用 initUI(int theprice)?您需要确保调用该方法以将成本设置为有效的 int。我刚刚更新了我的答案以包含这个。

标签: java android paypal this


【解决方案1】:

我们没有足够的信息来告诉您这里出了什么问题。出于某种原因,PayPal API 返回了失败状态代码。也许您没有互联网连接?

检查您在此行中检索到的错误消息字符串的值:

String errorMessage = data.getStringExtra(PayPalActivity.EXTRA_ERROR_MESSAGE);

您可以使用调试器对其进行检查,也可以使用 Logger 类中的 Log.e 函数将其记录到 Logcat 以便您阅读。

关于你的第二个问题:

顺便说一句,你怎么称呼 private {}、private void {} - 所有那些看起来像 function() 的东西?

在 Java 中,那些“看起来像函数的东西”称为方法。

编辑:好的,现在您已经向我们展示了您的 onCreate 方法,我可以看到您在哪里获得最终传递给 onInit 的值:

eprice = myBundle.getInt("eprice");

这样做意味着您将之前在捆绑包中的值保存在 onSaveInstanceState(Bundle)

你这样做了吗?第一次启动Activity时它是如何获取值的?

【讨论】:

  • 嗨,我现在更清楚地看到了错误。传递给 click 方法的值是“0.0”。我不确定是什么原因造成的
  • 好的,所以你必须弄清楚它是从哪里来的。您在 onCreate 中从捆绑包中获取了价值,但不清楚将其放入捆绑包中的哪个位置。我用更多信息再次编辑了我的答案。
  • 是的。我也这样做了。它是正确的。 TextView theprice = (TextView) findViewById(R.id.priceTxt); theprice.setText("价格:$" + epricetxt);此代码显示该值已正确保存。但我有替代解决方案。我需要做的就是改变 initUI(eprice);到 initUI(Double.valueOf(epricetxt));它有效。嗯,但仍然想知道为什么另一个没有工作
【解决方案2】:

使用我最新的代码,我不知道为什么我的 eprice 不起作用。但我有替代解决方案。我需要做的就是改变

initUI(eprice);

initUI(Double.valueOf(epricetxt));

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2020-06-10
    • 2017-09-12
    • 2014-02-20
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多