要設置Android圖像按鈕ImageButton,可以按照以下步驟進行操作:
<ImageButton
android:id="@+id/imageButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/my_image"
android:background="@android:color/transparent"
/>
在上述代碼中,使用android:src屬性指定圖像按鈕的圖像資源,使用android:background屬性設置按鈕背景為透明。
ImageButton imageButton = findViewById(R.id.imageButton);
imageButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// 處理點擊事件
}
});
imageButton.setScaleType(ImageView.ScaleType.CENTER_INSIDE);
imageButton.setBackgroundResource(R.drawable.my_button_bg);
在上述代碼中,通過setOnClickListener()方法設置按鈕的點擊事件監聽器,setScaleType()方法設置圖像按鈕的縮放類型,setBackgroundResource()方法設置按鈕的背景。
希望以上步驟對您有所幫助!