値/スタイルにあるカスタム ダイアログを作成しました。
<style name="AppTheme" parent="android:Theme.Light" />
<style name="MyDialogTheme" parent="android:Theme.Dialog">
<item name="android:windowBackground">@null</item>
<item name="android:windowNoTitle">true</item>
</style>
そして、私はそれを使いたい:
final Dialog dialogC = new Dialog(context,R.style.MyDialogTheme);
dialogC.setContentView(R.layout.confirm);
エラーは発生しませんが、デフォルトのテーマが引き続き使用されます。このテーマは、ダイアログとして表示したいアクティビティに使用したときに完全に機能しました.