我对图像有疑问。
我在2.2.0上ubdate androidstudio后,如果我编辑xml文件,所有构建的图像只在androidstudio中有图像。但如果在genymotion中启动应用程序或在手机图像中启动apk不显示。
<ImageView
android:layout_height="40sp"
app:srcCompat="@drawable/additem_button"
android:id="@+id/imageView36"
android:layout_weight="1"
android:scaleType="fitXY"
android:layout_width="51sp"
android:layout_gravity="right" />
</FrameLayout>
我拥有ldpi,mdpi,hdpi,xhdpi,xxhdpi,xxxhdpi中的所有图片,但是我只启动了应用程序xxhdpi手机而没有新的图像浏览...请如何解决这个问题..谢谢..
答案 0 :(得分:0)
我试试这个并且运行良好。
<ImageView
android:layout_height="40sp"
android:src="@drawable/additem_button"
android:id="@+id/imageView36"
android:layout_weight="1"
android:scaleType="fitXY"
android:layout_width="51sp"
android:layout_gravity="right" />