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