我用下面的主題在我的活動:的Android的EditText透明主題
<style name="Theme.TranslucentDarkGrey" parent="android:Theme">
<item name="android:windowIsTranslucent">true</item>
<item name="android:windowBackground">@color/translucent_dark_grey</item>
<item name="android:windowContentOverlay">@null</item>
<item name="android:windowNoTitle">true</item>
<item name="android:windowIsFloating">true</item>
<item name="android:backgroundDimEnabled">false</item>
</style>
這給了我一個半透明的灰色背景,看看後面的活動,我現在面臨的問題是我有沒有按」一個EditText填滿父母。如果我刪除上面的主題,它會很好地填充。這裏是佈局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<EditText
android:id="@+id/body"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scrollbars="vertical" android:layout_weight="1"/>
</LinearLayout>
沒關係解決它使用此:
<style name="Theme.TranslucentDarkGrey" parent="android:Theme.Translucent">
<item name="android:windowBackground">@color/translucent_dark_grey</item>
</style>
檢查這個問題,也可能是您的幫助:安卓的EditText透明背景](http://stackoverflow.com/questions/5737878/android-edittext-transparent-background) – 2011-12-28 09:59:56