非常に簡単な質問があります。カスタム ボタンに画像を追加するにはどうすればよいですか?
<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: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.
このタグを追加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" />
<?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 フォルダーに入れます。