0

我花了一整天的时间试图找到这个无济于事!在使用我的应用程序后,我想为我的用户提供一个摘要,一个简单的对话框是显而易见的解决方案。但是,我无法自定义主题以更改背景和按钮。我在这个问题上找到的每个教程和解释都使用 API 11 技术,我的目标是 API 8。

有没有办法为 API 8 设置对话框主题,以便我可以更改背景可绘制对象、字体、图标等?我发现了各种更改字体、图标、添加可绘制对象等的技术(例如http://www.helloandroid.com/tutorials/how-display-custom-dialog-your-android-application),但没有改变背景图形或颜色。

4

1 回答 1

2
//set up dialog
Dialog dialog = new Dialog(this);
dialog.setContentView(R.layout.dialog_layout);

Just specify a custom layout file for you dialog and specify there all the attributes you need including background drawable etc.

于 2012-12-29T22:18:44.353 回答