ImageButton

Kotlin
<ImageButton
    android:layout_width="48dp" <--- 48dp以上にすること
    android:layout_height="48dp"  <--- 48dp以上にすること
    android:background="?attr/selectableItemBackgroundBorderless"
    android:scaleType="centerInside"
    android:src="@drawable/ic_arrow_back"
    android:contentDescription="戻る" <--- これがないと「btnBack <ImageButton>: No speakable text present」

BACK