return getcustomtheme

still needed
This commit is contained in:
Harry Bond 2024-12-20 15:58:03 +00:00
parent c65fb53062
commit 637a051033
3 changed files with 29 additions and 0 deletions

View file

@ -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()
{

View file

@ -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)
{

View file

@ -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)