gpt4 book ai didi

java - 配置布伦特里

转载 作者:行者123 更新时间:2023-12-01 11:20:33 24 4
gpt4 key购买 nike

我正在尝试在我的应用程序上接受 BrainTree。我不明白异步 HTTP 客户端部分。

我应该把它放在应用程序的什么位置?目前,我将它放在 MainActivity 中,并且它给我提供了“get”、“TextHttpResponseHandler”以及“”错误clientToken'。

有什么想法吗?

package com.example.android.payments;

import android.content.Intent;
import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import com.loopj.android.http.*;
import com.braintreepayments.api.dropin.BraintreePaymentActivity;


public class MainActivity extends ActionBarActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

}
AsyncHttpClient client = new AsyncHttpClient();
client.get("https://your-server/client_token", new TextHttpResponseHandler() {
@Override
public void onSuccess(String clientToken) {
this.clientToken = clientToken;
}
});
public void onBraintreeSubmit(View v) {
Intent intent = new Intent(context, BraintreePaymentActivity.class);
intent.putExtra(BraintreePaymentActivity.EXTRA_CLIENT_TOKEN, clientToken);
// REQUEST_CODE is arbitrary and is only used within this activity.
startActivityForResult(intent, REQUEST_CODE);
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_main, menu);
return true;
}

@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();

//noinspection SimplifiableIfStatement
if (id == R.id.action_settings) {
return true;
}

return super.onOptionsItemSelected(item);
}
}

最佳答案

您对 client.get() 的调用不在方法主体中,因此您的代码在语法上无效。尝试将其放入方法(或构造函数或初始化程序 block 中 - 但在这些地方中的任何一个地方进行工作都是一个坏主意)。

例如,您可以将该语句放入名为 fetchClientToken() 的新方法中:

public class MainActivity extends ActionBarActivity {

@Override
protected void onCreate(Bundle savedInstanceState) { ... }

AsyncHttpClient client = new AsyncHttpClient();

public void fetchClientToken() {
client.get("https://your-server/client_token", new TextHttpResponseHandler() {
@Override
public void onSuccess(String clientToken) {
this.clientToken = clientToken;
}
});
}

public void onBraintreeSubmit(View v) { ... }
@Override public boolean onCreateOptionsMenu(Menu menu) { ... }
@Override public boolean onOptionsItemSelected(MenuItem item) { ... }
}

然后,您需要以某种方式调用 fetchClientToken,就像使用任何其他方法一样。

关于java - 配置布伦特里,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31280991/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com