在这里,我有两个活动, Activity_a some_button 和一个Activity_B。在 Activity_a 上单击 some_button 时,将显示 Activity_b 。在 Activity_b 中,我尝试使用 retrofit2 获取JSON_OBJECT,并在recyclerview中显示数据。
第一次一切顺利,在Activity_a中单击some_button后,Activity_b出现在recyclerView中的数据列表中。 但如果我从Activity_B按回来并再次尝试再次单击Activity_a的some_button并且屏幕仍然是黑色并显示以下错误。
引起:com.google.android.apps.gsa.shared.exception.GsaIOException: 错误代码:393238 |缓冲区溢出,没有可用空间。
这个有线问题在我整天都失去了,请帮助我,如果有人早先遇到过同样的问题或对此有任何想法。
Activity_A.java
@Override
public void onClick(View view) {
if (view.getId() == R.id.fab) {
Intent activityIntent = new Intent(this, Activity_B.class);
startActivity(activityIntent);
}
}
Activity_B.java
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_message);
toolbarAndViewInitialization();
/** Create handle for the RetrofitInstance interface*/
GetMessageDataService service = RetrofitInstance.getRetrofitInstance().create(GetMessageDataService.class);
/** Call the method with parameter in the interface to get the notice data*/
Call<MessageList> call = service.getMessageData();
/**Log the URL called*/
Log.wtf("URL Called", call.request().url() + "");
materialDialog.show();
call.enqueue(new Callback<MessageList>() {
@Override
public void onResponse(Call<MessageList> call, Response<MessageList> response) {
ArrayList<Message> noticeList = response.body().getMessageArrayList();
initDataToRecyclerView(noticeList);
materialDialog.hide();
}
@Override
public void onFailure(Call<MessageList> call, Throwable t) {
Toast.makeText(MessageActivity.this, "Something went wrong...Error message: " + t.getMessage(), Toast.LENGTH_SHORT).show();
materialDialog.hide();
}
});
}
RetrofitInstance.java
public class RetrofitInstance {
private static Retrofit retrofit;
private static final String BASE_URL2 = "https://someurl.com/";
/**
* Create an instance of Retrofit object
*/
public static Retrofit getRetrofitInstance() {
retrofit = new Retrofit.Builder()
.baseUrl(ApisUtils.BASE_URL)
.addConverterFactory(GsonConverterFactory.create())
.build();
return retrofit;
}
public static Retrofit getRetrofitInstance2() {
retrofit = new Retrofit.Builder()
.baseUrl(BASE_URL2)
.addConverterFactory(GsonConverterFactory.create())
.build();
return retrofit;
}
}
答案 0 :(得分:0)
问题解决了!!
在我的情况下,由于 for loop 中的愚蠢错误而出现此问题。即使在按下后退按钮后, for循环连续将数据放入array_list 并增加内存缓冲区大小。