forked from organicmaps/organicmaps
return getcustomtheme
still needed
This commit is contained in:
parent
c65fb53062
commit
637a051033
3 changed files with 29 additions and 0 deletions
|
@ -19,6 +19,22 @@ public class BaseMwmDialogFragment extends DialogFragment
|
|||
return STYLE_NORMAL;
|
||||
}
|
||||
|
||||
protected @StyleRes int getCustomTheme()
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onCreate(@Nullable Bundle savedInstanceState)
|
||||
{
|
||||
super.onCreate(savedInstanceState);
|
||||
|
||||
int style = getStyle();
|
||||
int theme = getCustomTheme();
|
||||
if (style != STYLE_NORMAL || theme != 0)
|
||||
setStyle(style, theme);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
protected Application getAppContextOrThrow()
|
||||
{
|
||||
|
|
|
@ -35,6 +35,13 @@ public class DirectionFragment extends BaseMwmDialogFragment
|
|||
private TextView mTvDistance;
|
||||
|
||||
private MapObject mMapObject;
|
||||
|
||||
@Override
|
||||
protected int getCustomTheme()
|
||||
{
|
||||
return R.style.MwmTheme_DialogFragment_Fullscreen_Translucent;
|
||||
}
|
||||
|
||||
@Override
|
||||
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState)
|
||||
{
|
||||
|
|
|
@ -103,6 +103,12 @@ public class EditBookmarkFragment extends BaseMwmDialogFragment implements View.
|
|||
|
||||
public EditBookmarkFragment() {}
|
||||
|
||||
@Override
|
||||
protected int getCustomTheme()
|
||||
{
|
||||
return R.style.MwmTheme_DialogFragment_Fullscreen;
|
||||
}
|
||||
|
||||
@Nullable
|
||||
@Override
|
||||
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)
|
||||
|
|
Loading…
Add table
Reference in a new issue