图片未出现在 Android Studio 的相对布局中

Image does not appear in Relative Layout of Android Studio

在AndroidStudio的RelativeLayout中插入两张图片时,如下图所示,可以看到DrawableBottom、Foreground、Icon中都插入了图片:

但是当运行在手机上同样的图形界面时,图像不会出现。请问,要怎样做才能显示图像?它位于 Android Studio 的相对布局中。

对于你的情况,我认为应该这样做来表明 android:background:"@drawable/seta_direita"

按钮:

<Button
       android:id="@+id/btn"
       android:layout_width="24dp"
       android:layout_height="24dp"
       android:background="@drawable/seta_direita"/>

相对布局:

 <RelativeLayout
           android:id="@+id/layout"
           android:layout_width="wrap_content"
           android:layout_height="wrap_content"
           android:background="@drawable/seta_direita">
 </RelativeLayout>  

由于您只使用图像作为背景,因此您应该使用 ImageButton,而不是常规按钮。

        <ImageButton
            android:id="@+id/btnSetaDireita"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:src="@drawable/seta_direita"/>