我有非常简单的问题,如何在自定义按钮中添加图像?
<com.example.KeyButton
android:id="@+id/custombutton"
android:layout_gravity="center_vertical"
android:layout_height="fill_parent" />
我有非常简单的问题,如何在自定义按钮中添加图像?
<com.example.KeyButton
android:id="@+id/custombutton"
android:layout_gravity="center_vertical"
android:layout_height="fill_parent" />
添加此标签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" />
您必须添加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.
<?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”放入可绘制文件夹中。
将按钮图像放入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>
希望这会有所帮助。
您可以以编程方式使用以下方法:
setBackground(Color c); and
setBackground(Drawable d);
setBackgroundResource(int resId);
否则,您可以使用上述 xml 方式