|
|
@@ -6,6 +6,7 @@ import android.content.BroadcastReceiver;
|
|
|
import android.content.Context;
|
|
|
import android.content.Intent;
|
|
|
import android.content.IntentFilter;
|
|
|
+import android.graphics.Color;
|
|
|
import android.os.Bundle;
|
|
|
import android.support.annotation.Nullable;
|
|
|
import android.support.v4.app.Fragment;
|
|
|
@@ -587,6 +588,7 @@ TrackingListSearchResult searchresult = new TrackingListSearchResult();
|
|
|
|
|
|
LinearLayout linearLayout = new LinearLayout(context);
|
|
|
linearLayout.setOrientation(LinearLayout.VERTICAL);
|
|
|
+ linearLayout.setBackgroundColor(Color.parseColor("#EFEFF4"));
|
|
|
|
|
|
if (this instanceof RecentFragment) {
|
|
|
|
|
|
@@ -598,6 +600,8 @@ TrackingListSearchResult searchresult = new TrackingListSearchResult();
|
|
|
|
|
|
linearLayout.addView(shipMap,mapLayoutParams);
|
|
|
|
|
|
+ mShipMap.setBackgroundColor(Color.parseColor("#EFEFF4"));
|
|
|
+
|
|
|
configureMap(mShipMap);
|
|
|
}
|
|
|
|
|
|
@@ -627,6 +631,8 @@ TrackingListSearchResult searchresult = new TrackingListSearchResult();
|
|
|
mPullRefreshListView = lv;
|
|
|
lv.setId(android.R.id.list);
|
|
|
lv.setDrawSelectorOnTop(false);
|
|
|
+ lv.setBackgroundColor(Color.parseColor("#EFEFF4"));
|
|
|
+
|
|
|
|
|
|
swipeRefreshLayout.addView(lv, new FrameLayout.LayoutParams(
|
|
|
ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT));
|