Skip to content

Instantly share code, notes, and snippets.

@mochico
Created June 4, 2013 10:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mochico/5704967 to your computer and use it in GitHub Desktop.
Save mochico/5704967 to your computer and use it in GitHub Desktop.
ダイアログをカスタムするときに背景とタイトルを消すstyle ref: http://qiita.com/items/6c69d6568c4a7581f172
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="Theme.MyDialog" parent="android:style/Theme.Dialog">
<item name="android:windowNoTitle">true</item>
<item name="android:windowBackground">@android:color/transparent</item>
</style>
</resources>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment