Change empty view background color
This commit is contained in:
parent
2ef34c8f67
commit
edda14c45a
1 changed files with 2 additions and 0 deletions
|
@ -110,6 +110,8 @@ public class OsmEditsFragment extends OsmAndListFragment implements SendPoiDialo
|
||||||
int icRes = getMyApplication().getSettings().isLightContent()
|
int icRes = getMyApplication().getSettings().isLightContent()
|
||||||
? R.drawable.ic_empty_state_osm_edits_day : R.drawable.ic_empty_state_osm_edits_night;
|
? 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);
|
((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);
|
Fragment optionsFragment = getChildFragmentManager().findFragmentByTag(OsmEditOptionsBottomSheetDialogFragment.TAG);
|
||||||
if (optionsFragment != null) {
|
if (optionsFragment != null) {
|
||||||
|
|
Loading…
Reference in a new issue