我認爲我的圖像是透明的,但我看到一個灰色的背景出現在我的圖像邊緣周圍。所以,而不是很好的透明圓ImageButton,我看到了方形邊緣。我需要提供身高或者抱怨,但是現在我已經勾勒出輪廓圖像的灰色/銀色方形圖案。ImageButton邊框透明度 - 如何去除圓形圖像周圍的方形邊框?
回答
設置該屬性在你的ImageButton XML的android:背景= 「@空」
<ImageButton android:src="@drawable/yourimagename"
android:id="@+id/thebuttonid"
android:layout_width = "wrap_content"
android:layout_height = "wrap_content"
android:background="@null"
/>
它需要api 11 – gsscoder 2012-11-23 09:14:18
感謝它爲我工作 – Sakthimuthiah 2013-04-30 08:41:39
作品在API 10 – PaperThick 2013-05-22 15:07:37
你可以使用ImageButton.setBackgroundResource(int)(android:background屬性)來擺脫那個邊框。
COSTI
這是正確的! – 2011-11-23 02:30:38
或者只是將背景設置爲Android的透明色
<ImageButton android:src="@drawable/yourimagename"
android:id="@+id/thebuttonid"
android:layout_width = "wrap_content"
android:layout_height = "wrap_content"
android:background="@android:color/transparent"
/>
這應該是接受的答案(背景= @空對我沒有用) – m02ph3u5 2015-01-23 16:23:35
- 1. Android,移除圓形進度條周圍的方形邊框
- 2. Android的圓形邊框圓形圖像
- 3. Safari中的透明圓形邊框
- 4. CSS - 如何在圓形圖像周圍添加圓形邊框/輪廓?
- 5. 使六邊形形狀的邊框,圓角和透明背景
- 6. ImageButton Border Transparancy - 刪除圓形圖像的方形邊框不起作用?
- 7. 在圓形圖像周圍生成平滑的白色邊框
- 8. 圖像精靈僞造內容周圍的圓形邊框?
- 9. 在橢圓形的圖畫框周圍繪製邊框
- 10. 使用CSS在圖像周圍創建圓形邊框
- 11. 圓形邊框進度條
- 12. 圖像周圍的兩個六邊形邊框(響應式)
- 13. 在圖形周圍繪製邊框?
- 14. 圖像周圍的邊框
- 15. 我如何掩蓋一個圓形的方形圖像,並在圖像周圍放置黑色邊框
- 16. 使imagemagick中的圖像圓形邊框
- 17. 地圖圓形邊框webkit
- 18. LimeJS圓形邊框
- 19. 圓形邊框LinerLayout
- 20. CSS的邊框圖像透明度
- 21. 使圖像完全無邊框圓形
- 22. 圓形圖像或邊框半徑100%?
- 23. 將邊框添加到圓形圖像
- 24. 將邊框添加到圓形圖像
- 25. SVG文本週圍的矩形邊框
- 26. 在圖像周圍添加透明邊框
- 27. 倒圓形的邊框css
- 28. 完美的圓形邊框
- 29. 刪除標記周圍的多邊形/圓形?
- 30. 形狀,只有一個透明邊框
請注意我不知道這是否是我所看到的邊框或背景。我知道這不是圖像背景。也許這是ImageButton的背景。該區域不包含我提供的圓形圖像.... – Androider 2011-03-21 05:21:40
無論採用哪種方式,它都會將按鈕與正方形的邊框相框。 – Androider 2011-03-21 05:22:04
發佈按鈕和圖像的代碼..你有任何填充? – apesa 2011-03-21 05:29:05