0
ダイアログの後ろに表示される半透明の背景の色を変更する方法を教えてください。私ができるか -透明な背景を変更するダイアログ
別の質問: デフォルトは黒であり、私はこれは私が私のカスタムダイアログのために使用しているテーマは
(デフォルトのような同じアルファで)それは白にしたいです
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="CustomDialogTheme" parent="android:Theme.Dialog">
<item name="android:layout_width">fill_parent</item>
<item name="android:layout_height">fill_parent</item>
<item name="android:padding">30dp</item>
<item name="android:windowNoTitle">true</item>
<item name="android:windowIsFloating">true</item>
<item name="android:background">@color/white</item>
</style>
</resources>
を上書きする必要がありますテーマ - ポップアップの背後に表示される半透過レイヤーの色の原因となるパラメータが見つかりませんでした。 –
http://stackoverflow.com/questions/3118601/how-can-i-change-the-background -of-android-alert-dialogs – AJcodez