0

非常に簡単な質問があります。カスタム ボタンに画像を追加するにはどうすればよいですか?

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

5 に答える 5

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 に答える
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 に答える
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 フォルダーに入れます。

于 2013-10-25T12:24:27.853 に答える