2013-10-25 154 views
0

我有非常簡單的問題,如何在自定義按鈕中添加圖像?如何將圖像添加到自定義按鈕

<com.example.KeyButton 
       android:id="@+id/custombutton" 
       android:layout_gravity="center_vertical" 
       android:layout_height="fill_parent"  /> 
+1

使用'機器人說:background' –

+0

相同的方式,在''ImageView'的Android添加圖片:背景= 「@可繪製/圖像」。 – GrIsHu

+0

thanx爲您的答覆,但我喜歡像圖像按鈕視圖有PNG圖像。 – vik

回答

1

添加這個標籤android:background="@drawable/your_image"

<com.example.KeyButton 
      android:id="@+id/custombutton" 
      android:layout_gravity="center_vertical" 
      android:layout_height="fill_parent" 
      android:background="@drawable/your_image" /> 
0
<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:orientation="vertical" > 

    <ImageButton 
     android:id="@+id/yourImageButton" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:src="@drawable/your_image" /> 

</LinearLayout> 

並把 「your_image」 中繪製文件夾。

1

您必須添加android:backgroud添加圖片。

<com.example.KeyButton 
android:id="@+id/custombutton" 
android:layout_gravity="center_vertical" 
android:layout_height="fill_parent" 
android:background"@drawable/image" /> //here will be your image. 
0

在drawble文件夾按鈕,放像,並把你的XML文件中的代碼....

 <LinearLayout 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" 
     <Button 
      android:id="@+id/btn_your_btn_name" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:background="@drawable/set_alarm_button" /> 
    </LinearLayout> 

希望這將有助於。

0

您可以通過編程使用方法:

setBackground(Color c); and 
setBackground(Drawable d); 
setBackgroundResource(int resId); 

否則,您可以使用XML的方式像上面

相關問題