我已经为Android创建了Xamarin表单菜单。我只看到文本,没有图标:
我想我只是不知道在哪里把图标正确地到达他们从我的菜单文件。我有这样的文件结构:
我尝试从FlyoutMenuPage.xaml文件访问PatientInfo.png,如下所示:
<ListView.ItemsSource>
<x:Array Type="{x:Type local:FlyoutItemPage}">
<local:FlyoutItemPage Title="Mano duomenys" IconSource="PatientInfo.png" TargetPage="{x:Type local:PatientInfo}"/>
</x:Array>
</ListView.ItemsSource>
在哪里放置我的图标(哪个文件夹)以及如何访问它们?
1条答案
按热度按时间s4chpxco1#
应将图像添加到
Resources/drawable
目录中。您可以参考如何设置本地映像的文章。