【发布时间】:2019-04-24 23:24:49
【问题描述】:
我正在尝试在我的 Xamarin Forms 应用中实现 XfxCardView。加载应用程序时发生异常。构建时没有错误。我不知道为什么我会得到这个例外。例外是
Unhandled Exception:
System.TypeLoadException: VTable setup of type Xfx.Controls.Droid.Renderers.XfxCardViewRendererDroid failed
这是我的 XAML 代码
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:xfx="clr-namespace:Xfx;assembly=Xfx.Controls"
x:Class="ScrollerSample.Gallery" BackgroundColor="White">
<StackLayout Margin="20,0,0,0">
<Label Text="Top specialitiest" TextColor="Black" FontFamily="Bold,10" FontSize="20" />
<Grid RowSpacing="0">
<Grid.RowDefinitions >
<RowDefinition Height="*"></RowDefinition>
<RowDefinition Height="Auto"></RowDefinition>
</Grid.RowDefinitions>
<ScrollView Grid.Row="0" HorizontalOptions="FillAndExpand" Orientation="Horizontal" VerticalOptions="StartAndExpand">
<StackLayout x:Name="StackGallery" Padding="1" Orientation="Horizontal" HorizontalOptions="FillAndExpand">
</StackLayout>
</ScrollView>
<Label Grid.Row="1" Text="RESTAURANTS NEAR YOU" TextColor="#595959" HeightRequest="30"></Label>
<Label Grid.Row="2" Text="25 Restaurants finded" TextColor="#d9d9d9" HeightRequest="20"></Label>
</Grid>
<StackLayout>
<xfx:XfxCardView CornerRadius="3" Elevation="3">
<StackLayout Padding="0" Margin="0">
<Image Source="http://lorempixel.com/1024/200/abstract" HorizontalOptions="Fill" Aspect="Fill" />
<Label Text="hi judson" TextColor="Black" Margin="8"/>
</StackLayout>
</xfx:XfxCardView>
</StackLayout>
</StackLayout>
</ContentPage>
这是 MainActivity 中的代码
using Xfx;
namespace ScrollerSample.Droid
{
[Activity(Label = "ScrollerSample", Icon = "@drawable/icon", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation)]
public class MainActivity : global::Xamarin.Forms.Platform.Android.FormsApplicationActivity
{
protected override void OnCreate(Bundle bundle)
{
base.OnCreate(bundle);
XfxControls.Init();
global::Xamarin.Forms.Forms.Init(this, bundle);
LoadApplication(new App());
}
}
}
我已经添加了显示卡片视图所需的所有必要代码,但我仍然遇到异常。我正在使用this Link 进行卡片查看。
【问题讨论】:
-
你的项目链接选项是什么?
-
我的意思是你的Android项目链接选项是什么?你可以在你的 android
Properties -> Android options -> Linking中找到它 -
@YorkShen-MSFT 没有。
-
这是有线的,我在我这边测试了你的代码,它工作正常,你介意分享一个基本的演示,以便我们可以在我们这边重现这个问题吗?
标签: xamarin xamarin.forms cardview