在 ImageButton 中显示图像

Showing Image in ImageButton

我向 ImageButton 添加了一个图像,但它没有show.why?

 <ImageButton
        android:id="@+id/next_button"
        android:layout_width="105dp"
        android:layout_height="53dp"
        android:src="@drawable/icons8-fast-forward-64" 
        android:contentDescription="@string/next_text" />

您的代码看起来不错,请检查您的 drawable 资源。它是否显示在 xml 布局文件中??

问题在于您对可绘制对象的命名....

重构它以从 icons8-fast-forward-64

读取 icons8fastforward64
<ImageButton
        android:id="@+id/next_button"
        android:layout_width="105dp"
        android:layout_height="53dp"
        android:src="@drawable/icons8fastforward64" 
        android:contentDescription="@string/next_text" />