<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="FullHeightDialog" parent="android:style/Theme.Dialog">
<item name="android:windowNoTitle">true</item>
<item name="android:windowBackground">@android:color/transparent</item>
</style>
</resources>
上面的代碼寫在string.xml里面
然后在清單文件中給activity設置theme
android:theme="@style/FullHeightDialog"
ok 搞定~!!