我在清单中使用了以下行:
android:theme="@android:style/Theme.Light.NoTitleBar"
没有标题栏并在我的应用程序中显示 AlertDialog 的轻型版本,例如:
但它仍然以深色主题显示:
我的对话框 Java 代码:
new AlertDialog.Builder(FreeDraw.this)
.setIcon(android.R.drawable.ic_dialog_alert)
.setTitle("Clear Drawing?")
.setMessage("Do you want to clear the drawing board?")
.setPositiveButton("Yes", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
finish();
startActivity(getIntent());
}
})
.setNegativeButton("No", null)
.show();
如何保持 AlertDialog 的主题光?