我正在使用HoloEverywhere库,我需要使用Holo Dark主题设置动作栏和对话框(ProgressDialog和AlertDialog)以及使用Holo Light设置其余控件。
我将应用程序主题设置为Holo.Theme.Light.DarkActionBar(这是我目前所需要的最接近的)但是我得到了Light对话框。
我怎样才能做到这一点?
提前致谢。
答案 0 :(得分:7)
为对话框创建新的上下文包装器:
Context dialogContext = new ContextThemeWrapper(this, R.style.Holo_Theme);
Dialog dialog = new AlertDialog.Builder(dialogContext).create();