要在Android中使用ImageButton設置圖片,可以按照以下步驟進行操作:
<ImageButton
android:id="@+id/imageButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/my_image" />
其中,@drawable/my_image
表示要設置的圖片資源,可以在res/drawable
目錄中添加圖片資源文件。
ImageButton imageButton = findViewById(R.id.imageButton);
imageButton.setImageResource(R.drawable.my_image);
其中,R.drawable.my_image
表示要設置的圖片資源,可以使用setImageResource()
方法設置圖片。
注意:如果要為ImageButton設置不同的圖片在不同的狀態下(例如按下、禁用等),可以使用android:background
屬性來設置背景資源,并在Java代碼中使用setBackgroundResource()
方法設置不同狀態下的背景資源。