我有一个自定义布局的对话框(非常简单)。我使用下面的代码设置它:
public static Dialog createGPSDialog(final Activity activity, boolean isLocationEnabled) {
final Dialog dialog = new Dialog(activity, R.style.Theme_Sherlock_Light_Dialog);
LinearLayout contentView = (LinearLayout) activity.getLayoutInflater().inflate(R.layout.dialog_twobutton, null);
dialog.setContentView(contentView);
return dialog;
}
我省略了一些代码,但它不相关。无论如何,这就是姜饼中的样子:
这就是它在 jellybean 上的样子(也可能是 ics):
对话框的标题区域保留在 JB 上,即使在设置 ContentView 之后也是如此。有解决方法吗?