前景在真实设备中不可见但在模拟器中可见

Foreground not visible in real device but visible in emulator

当我为按钮设置前景时,它在 Android Studio 上显示正常,但是当我在 phone 上尝试时,我看不到所选图片。这是一个新的项目来测试这个:

Android Studio 的首选项有问题还是我的 phone?

<TextView
    android:layout_width="wrap_content"
    android:layout_height="100dp"
    android:text="Hello World!"
    android:layout_alignParentRight="true"
    android:layout_alignParentEnd="true"
    android:layout_alignParentLeft="true"
    android:layout_alignParentStart="true"
    android:foreground="@mipmap/ic_launcher"
    android:foregroundGravity="center" />

这是 Hello World 的简单代码。

android:foreground 属性用于前景选择器(添加到 FrameLayout)。它不是简单地绘制图像。

textView 没有属性 android:foreground。并且将图像放在 textView 的前景中也没有意义。要了解有关 textView 的属性和方法的更多信息,请关注 Android developer page

如果您想在按钮上添加图像,请使用 imageButton。

或者我添加了带 android:drawableLeft 的图像(在我的情况下左边没问题)并且显示正常。因此,如果有人遇到类似问题,android:drawableLeft 也可以。