未在模拟器

时间:2018-03-23 20:49:25

标签: java android weather

我想在Android Studio中设置一个白线。

我将whiteLine.png存储在drawable-hdpi中。我在主要活动中设置了它。我不知道它为什么现在在模拟器中显示。

尝试多个API版本,没有任何变化。

为什么whiteLine ImageView无法正常工作?

图像在ANDROID DESIGN

enter image description here

IMUL IN EMULATOR

enter image description here

主要活动代码

whiteLine = (ImageView) findViewById(R.id.whiteLine);
whiteLine.setImageResource(R.drawable.whiteline);

XML

<ImageView
    android:id="@+id/whiteLine"
    android:layout_width="wrap_content"
    android:layout_height="7dp"
    android:layout_marginTop="265dp"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent"
    app:srcCompat="@drawable/whiteline" />

0 个答案:

没有答案