カスタムの背景影をどのようにして暗くしますかapp.Dialog
は暗いですか?app.Dialogシャドウを暗くする
期待:
リアリティ:
私が試したもの:
1)MyDialog dialog = new MyDialog (mContext); dialog.getWindow().setBackgroundDrawable(new ColorDrawable(Color.BLACK)); dialog.show();
2)MyDialog dialog = new MyDialog (mContext, R.style.NewDialog); dialog.getWindow().setBackgroundDrawable(new ColorDrawable(Color.BLACK)); dialog.show();
R.style.NewDialog
:。
<!-- This style removes shadow but I need to make it darker.-->
<!-- Don't know which parameter needed to change for that-->
<style name="NewDialog">
<item name="android:windowFrame">@null</item>
<item name="android:windowBackground">@android:color/transparent</item>
<item name="android:windowIsFloating">true</item>
<item name="android:windowContentOverlay">@null</item>
<item name="android:windowTitleStyle">@null</item>
<item name="android:windowAnimationStyle">@android:style/Animation.Dialog</item>
<item name="android:windowSoftInputMode">stateUnspecified|adjustPan</item>
<item name="android:backgroundDimEnabled">false</item>
<item name="android:background">@android:color/transparent</item>
</style>
変更なし。 'dialog.getWindow()。setBackgroundDrawable(new ColorDrawable(Color.BLACK));' – AnZ
このダイアログを表示するにはどうすればいいですか? – AnZ
AlertDFragment alertDFragment = new AlertDFragment(); newFragment.show(getFragmentManager()、 "dialog"); –