2011-12-28 72 views
0

我用下面的主題在我的活動:的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> 
+0

檢查這個問題,也可能是您的幫助:安卓的EditText透明背景](http://stackoverflow.com/questions/5737878/android-edittext-transparent-background) – 2011-12-28 09:59:56

回答

1

沒關係解決它使用此:

<style name="Theme.TranslucentDarkGrey" parent="android:Theme.Translucent"> 
<item name="android:windowBackground">@color/translucent_dark_grey</item> 

0

應用下面的代碼行的編輯框,它會給你透明背景。

android:background="@null" 
+0

這只是讓EditText完全透明,並且與背景混合的浮動文字顯得雜亂無章。 – Maurice 2011-12-28 10:07:59

+0

你可以定義部分透明嗎?根據您的查詢,您正在尋找透明背部,我認爲我是正確的每個問題。 – RobinHood 2011-12-28 11:30:52