Xamarin ListView System.MissingMethodException:未找到方法'TextView.SetTextAppearance'

时间:2016-06-17 19:44:30

标签: listview xamarin xamarin.android xamarin.forms

我想在ListView中显示字符串列表。 在我的xaml中我有:

<ListView x:Name="ListCollections" Grid.Row="4" Grid.Column="0" Grid.ColumnSpan="3"/>

在代码中我有:

ListCollections.ItemsSource = new string[]{"one", "two"};

当我运行app时,我得到了:

System.MissingMethodException: Method 'TextView.SetTextAppearance' not found.

我正在使用Xamarin.Forms 2.3.0.49和Visual studio 2015.Emulator是Android 5.0

1 个答案:

答案 0 :(得分:3)

这是bugzilla中已报告的错误。

我在那里说过:

  

我只能在将目标API设置为23时运行它。

请尝试将您的Android目标设置为23。