0
我有一個style.xml
爲什麼視圖設置與自定義樣式對話框切換到全屏模式設置
<resources>
<style name="CustomDialogTheme" parent="@android:style/Theme.Dialog">
<item name="android:windowIsFloating">false</item>
<item name="android:windowNoTitle">true</item>
<item name="android:windowBackground">@drawable/stonebook</item>
</style>
</resources>
我想定製我的對話與此風格:
Dialog dialog = new Dialog(SimpleTestActivity.this,R.style.CustomDialogTheme);
dialog.show();
爲什麼對話框設置爲全屏不是可繪製的大小?
事件中,我添加代碼:
<item name="android:layout_height">wrap_content</item>
<item name="android:layout_width">wrap_content</item>
它並沒有改變,仍然一直延伸到全屏。