全屏ImageButton

时间:2012-05-05 17:33:46

标签: android

我试图创建一个全屏Imagebutton。但是我一直在变得灰色边框。

<ImageButton
        android:id="@+id/StartButton"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"        
        android:src="@drawable/startscreen" />

我尝试在日食时将照片拉伸到全屏,但图片周围仍然显示灰色边框。

我想知道是因为我的设置或图片分辨率的分辨率。我正在制作一个星系音符。

2 个答案:

答案 0 :(得分:2)

这应该删除灰色边框

<ImageButton
        android:id="@+id/StartButton"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"        
        android:src="@drawable/startscreen" 
        android:background="#000000"/>

答案 1 :(得分:0)

@ Proxy32的想法可能是最好的。或者,不要使用android:src属性,而是使用android:background。您也可以使用简单的Button代替将背景设置为drawable并将文本保留。