1

有没有办法在触发 android 应用程序中激活本机菜单的全息主题(在我的情况下,是从 AlertDialog 中破解的“ContextMenu”)?

4

1 回答 1

2

我在评论中链接的答案被证明是有效的。

如何在插件中使用它的快速示例:

Dialog dialog = new Dialog(new ContextThemeWrapper(ForgeApp.getActivity(), android.R.style.Theme_Holo));
dialog.setTitle("Hello");
dialog.show();
于 2012-11-05T16:57:20.187 回答