我想在Android Studio中设置一个白线。
我将whiteLine.png存储在drawable-hdpi中。我在主要活动中设置了它。我不知道它为什么现在在模拟器中显示。
尝试多个API版本,没有任何变化。
为什么whiteLine ImageView无法正常工作?
图像在ANDROID DESIGN
IMUL IN EMULATOR
主要活动代码
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" />