我在選項卡式活動中使用多個片段來顯示json數據。
我想在每個片段收到響應時顯示進度條。Retrofit 2 - 如何在接收JSON響應時顯示進度條
private void loadJSON() {
Retrofit retrofit = new Retrofit.Builder()
.baseUrl(BASEURL)
.addConverterFactory(GsonConverterFactory.create())
.build();
newsAPI = retrofit.create(NewsAPI.class);
Call <JSONResponse> call =
newsAPI.topNews("soure", "api-key");
call.enqueue(new Callback <JSONResponse>() {
@Override
public void onResponse(Call <JSONResponse> call, Response <JSONResponse> response) {
Log.v("this", "Yes!");
}
}
@Override public void onFailure(Call <JSONResponse> call, Throwable t) {
Log.v("this", "No Response!");
}
});
試圖顯示一個進度條,通過XML聲明它,但不能 –
@LucaNicoletti我想顯示進度欄不進展對話?可能嗎? –
你已經接受了答案。如果你想要另一個解決方案,請發佈另一個 –