2012-02-08 59 views
1

我有一個相當小但奇怪的問題,我似乎無法修復。 我想爲我的按鈕顯示一個圖像,它顯示爲黑色方塊。 我在此之前所做的按鈕顯示和工作正常,但此按鈕(和其餘我做之後)顯示爲黑色方塊。 現在如果我將它更改爲ImageView而不是按鈕,它顯示罰款。Android按鈕:顯示黑色方塊而不是img?

有沒有人遇到過這個問題?如果是這樣,你是如何解決它的? 我仍然是編程的新手,而且我在教自己,所以我真的沒有任何幫助,現在我一直在嘗試修復它。 :(

下面是按鈕/圖像的XML。

<RelativeLayout 
     android:orientation="vertical" 
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent"> 

     <Button 
      android:id="@+id/pause" 
      android:src="@drawable/pause" 

      android:layout_width="29px" 
      android:layout_height="29px" 
      android:layout_alignParentRight="true" 
      android:layout_alignParentTop="true" 
      android:layout_marginTop="15dp" 
      android:layout_marginRight="10dp"> 
     </Button> 

</RelativeLayout> 

如果您有任何其它問題,請詢問,並感謝一噸看我的問題!:)

回答

7

要麼使用ImageButton而不是Button或更改android:src="@drawable/pause"android:background="@drawable/pause"

相關問題