有人可以給我一個建議,我怎麼才能得到一個標題。因爲我得到所有的標題,我不能選擇一個。這是我的代碼:翻新1.9獲取標題
LoginService loginService =
RetrofitClient.createService(LoginService.class, userEmail, userPassword);
loginService.basicLogin(new Callback<User>()
{
@Override
public void success (User user, Response response){
List<retrofit.client.Header> tokens = response.getHeaders();
Log.e(LOG_TAG, "x-auth-token is" + xAuthToken));
Toast.makeText(getApplicationContext(), "Your are in", Toast.LENGTH_SHORT).show();
Intent intent = new Intent(getApplicationContext(), BetweenActivity.class);
startActivity(intent);
}
如何迭代'tokens'列表來查找必要的元素? –
感謝您的諮詢! :) –