HoloEverywhere:黑暗的动作条和对话框

时间:2013-04-02 20:55:54

标签: android dialog styles android-holo-everywhere

我正在使用HoloEverywhere库,我需要使用Holo Dark主题设置动作栏和对话框(ProgressDialog和AlertDialog)以及使用Holo Light设置其余控件。

我将应用程序主题设置为Holo.Theme.Light.DarkActionBar(这是我目前所需要的最接近的)但是我得到了Light对话框。

我怎样才能做到这一点?

提前致谢。

1 个答案:

答案 0 :(得分:7)

为对话框创建新的上下文包装器:

Context dialogContext = new ContextThemeWrapper(this, R.style.Holo_Theme);
Dialog dialog = new AlertDialog.Builder(dialogContext).create();