android imageview图片显示出来

xiaoxiao2021-02-28  80

在尝试seekBar控制图片透明度发现图片一直显示不出来

<SeekBar android:layout_width="match_parent" android:layout_height="wrap_content" android:progress="60" android:id="@+id/seekBar" /> <ImageView android:layout_width="match_parent" android:layout_height="300dp" app:srcCompat="@drawable/timg" android:background="@color/colorAccent" android:id="@+id/imageView" />

最终发现是SDK不支持  app:srcCompat="@drawable/timg"

更改为android:src="@drawable/timg"即可。

转载请注明原文地址: https://www.6miu.com/read-83326.html

最新回复(0)