Change empty view background color

This commit is contained in:
PavelRatushny 2017-11-20 17:58:47 +02:00
parent 2ef34c8f67
commit edda14c45a

View file

@ -110,6 +110,8 @@ public class OsmEditsFragment extends OsmAndListFragment implements SendPoiDialo
int icRes = getMyApplication().getSettings().isLightContent()
? R.drawable.ic_empty_state_osm_edits_day : R.drawable.ic_empty_state_osm_edits_night;
((ImageView) emptyView.findViewById(R.id.empty_state_image_view)).setImageResource(icRes);
emptyView.setBackgroundColor(getResources().getColor(getMyApplication().getSettings()
.isLightContent() ? R.color.ctx_menu_info_view_bg_light : R.color.ctx_menu_info_view_bg_dark));
Fragment optionsFragment = getChildFragmentManager().findFragmentByTag(OsmEditOptionsBottomSheetDialogFragment.TAG);
if (optionsFragment != null) {