在Pre-Lollipop设备中使用.xml向量时,应用程序崩溃Xamarin.Android

问题描述 投票:-1回答:1

我在xamarin.android项目中使用.xml vector drawable。当我在棒棒糖前设备中运行应用程序时,应用程序崩溃是因为在棒棒糖前设备中不支持矢量绘制。

*我正在使用Xamarin.Android.Support.Vector.Drawable和Xamarin.Android.Support.v7.AppCompat,但它不起作用。

我能做什么?

- 我不想使用.png图像而不是.xml矢量!

android visual-studio vector xamarin.android android-4.4-kitkat
1个回答
1
投票

你可以在前棒棒糖的代码中设置图像矢量,例如:

ImageView image = new ImageView(this); image.SetImageResource(Resource.Drawable.dt);

© www.soinside.com 2019 - 2024. All rights reserved.