程序从Web服务器获取数据,并将数据放入arrayList
中。如果arrayList
的大小大于1,则说明工作成功。但是,如果它较小,则必须显示我设置的错误屏幕。
我的问题是,当它具有两个不同的tabItem并获得两个不同的数组时,如果其中一个的大小不大于1。它将在同一页中显示错误消息。并在页面中显示数据。当没有数据时,如何显示此屏幕?
这是从Web服务器获取数据的类。
Voyage.java
JSONObject object = new JSONObject(response);
if (object.getString(MyConstants.SERVICE_STATUS).equals(MyConstants.SERVICE_RESPONSE_STATUS_NOTAVAILABLE)) {
sendVoyagesErrorBroadcast(owner, MyConstants.ERROR_NOTAVAILABLE);
} else if (object.getString(MyConstants.SERVICE_STATUS).equals(MyConstants.SERVICE_RESPONSE_STATUS_SUCCESS)) {
JSONArray result = object.getJSONArray(MyConstants.SERVICE_RESULT);
if (result.length() > 0) {
JSONArray resultGoing = result.getJSONObject(0).getJSONArray("going");
sendVoyagesArrayBroadcast(owner + MyConstants.DIRECTION_GOING, resultGoing);
} else {
sendVoyagesErrorBroadcast(owner, MyConstants.ERROR_NO_VOYAGE);
}
if (has_return) {
if (result.length() >1) {
JSONArray resultReturn = result.getJSONObject(1).getJSONArray("round");
sendVoyagesArrayBroadcast(owner + MyConstants.DIRECTION_RETURN, resultReturn);
} else {
sendVoyagesErrorBroadcast(owner, MyConstants.ERROR_NO_VOYAGE);
}
}
}
这是解析JSON数组并检查数组大小的类。 MyBaseVoyagementFragment.java
public ParseIntentDataAndLoadVoyagesAdapter(Intent intent) {
this.intent = intent;
}
@Override
protected String doInBackground(String... params) {
if (isCancelled()) return "";
try {
JSONArray jsonArray = new JSONArray(intent.getStringExtra("data"));
voyageList = new ArrayList<>();
for (int i = 0; i < jsonArray.length(); i++) {
voyageList.add(Voyage.setJsonToClass(jsonArray.getJSONObject(i), direction, owner));
}
if (voyageList.size() < 1) {
setErrorView(MyConstants.ERROR_NO_VOYAGE);
}
这些是发送数组和发送错误的广播功能。
// sonuç aldım diye sinyal gönderiyorum.
private void sendVoyagesArrayBroadcast(String target, JSONArray resultArray) {
Intent intent = new Intent();
intent.setAction(BROADCAST_TAG + target);
intent.putExtra("data", resultArray.toString());
/*if(!target.contains("bus2")){
Log.e("sendSuccessBroadcast",target);
intent.putExtra("data", resultArray.toString());
}*/
context.sendBroadcast(intent);
}
private void sendVoyagesErrorBroadcast(String target, int errorCode) {
Intent intent = new Intent();
intent.setAction(BROADCAST_TAG + target + "Error");
intent.putExtra("data", errorCode);
Log.e("sendErrorBroadcast", target);
context.sendBroadcast(intent);
}
编辑:添加了setErorView函数。
void setErrorView(int errorType) {
if (errorType == MyConstants.ERROR_NOTAVAILABLE && owner == "ship") {
if (SeawayReturnFragment.tabLayout != null)
SeawayReturnFragment.tabLayout.setVisibility(View.INVISIBLE);
SeawayDepartureFragment.tabLayout.setVisibility(View.INVISIBLE);
}
errorView.setVisibility(View.VISIBLE);
mRecyclerView.setVisibility(View.GONE);
TextView tvDesc = errorView.findViewById(R.id.tv_Desc);
tvDesc.setText(getErrorDesc(errorType));
}
布局:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="16dp"
android:paddingRight="16dp"
android:paddingTop="8dp">
<TextView
android:id="@+id/textView25"
android:layout_width="wrap_content"
android:layout_height="0dp"
android:layout_below="@+id/img_Type"
android:layout_centerHorizontal="true"
android:gravity="center"
android:text="Bir şeyler ters gitti"
android:textColor="@color/md_grey_500"
android:textSize="22sp"
android:textStyle="bold" />
<ImageView
android:id="@+id/img_Type"
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_centerHorizontal="true"
android:layout_marginTop="80dp"
android:contentDescription="@string/cd_Error"
app:srcCompat="@drawable/ic_sadf" />
<TextView
android:id="@+id/tv_Desc"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/textView25"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:gravity="center"
android:textAppearance="@style/Base.TextAppearance.AppCompat.Medium"
android:textColor="@color/md_grey_400"
android:textSize="20sp" />
答案 0 :(得分:0)
我解决了问题。我的代码不会发生此问题。它的发生是由于Web服务器。该程序从Web服务器获取“行进”和“回合”数组。服务器未发送“圆形”数组,因此在我的程序中出现了此问题。现在他们修复了,并将空数组发送为“ round”。所以,我的问题解决了。