2010-10-03 101 views
1

示出僞影我有一個這樣的佈局:的ImageButton在透明圖像

<LinearLayout android:background="mybackgroundimage.jpg"> 
    ... 
    <LinearLayout android:weight=1> <!-- another layout to group the 
       images below and give it weight=1 --> 
     <ImageButton android:background="item1bg.png" .../> 
     <ImageButton android:background="item2bg.png" .../> 
    </LinearLayout> 
</LinearLayout> 

的圖像item1bg和item2bg從完整圖像到完全透明的褪色。 所需的效果是將圖像混合到背景。

我已驗證圖像,當你用任何東西打開它們時,它們看起來都OK。但是,在按鈕中應用時,它們會在混合部分顯示僞像:一些綠色的垂直透明線條。

我試過setAlpha(0),但是文物仍然存在。

關於爲什麼發生這種情況和/或如何解決它的任何想法?

謝謝! Llappall

回答

0

問題是圖像DID具有僞像,但由於alpha值較大(使圖像部分透明),所以很難看到它們。 這是一個圖像問題,而不是ImageButton。

:(

感謝

llappall