Advertisement
Guest User

custom fullscreen dialog settings android

a guest
Aug 28th, 2015
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.53 KB | None | 0 0
  1. <style name="full_screen_dialog" parent="@android:style/Theme.Dialog">
  2.     <item name="android:windowNoTitle">true</item>
  3.     <item name="android:windowFullscreen">true</item>
  4.     <item name="android:windowIsFloating">true</item>
  5.     <item name="android:windowContentOverlay">@null</item>
  6.     <item name="android:windowAnimationStyle">@android:style/Animation.Dialog</item>
  7.     <item name="android:windowSoftInputMode">stateUnspecified|adjustPan</item>
  8.     <item name="android:windowBackground">@android:color/transparent</item>
  9. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement