如何将图像添加到自定义按钮

时间:2013-10-25 12:20:52

标签: android button imagebutton

我有非常简单的问题,如何在自定义按钮中添加图像?

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

5 个答案:

答案 0 :(得分: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" />

答案 1 :(得分: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.

答案 2 :(得分: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”放在drawable文件夹中。

答案 3 :(得分:0)

将按钮图像放在drawable文件夹中,并将此代码放入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>
希望这会有所帮助。

答案 4 :(得分:0)

您可以通过编程方式使用方法:

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

否则,您可以像上面所述使用xml方式