0

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

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

5 回答 5

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" />
于 2013-10-25T12:25:41.670 回答
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.
于 2013-10-25T12:28:03.037 回答
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”放入可绘制文件夹中。

于 2013-10-25T12:24:27.853 回答
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>

希望这会有所帮助。

于 2013-10-25T12:31:42.303 回答
0

您可以以编程方式使用以下方法:

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

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

于 2013-10-25T12:49:26.323 回答