如何在Arc.UserDialogs ActionSheet中添加/设置图标?

时间:2019-04-03 05:37:02

标签: xamarin.forms

我在xamarin表单应用程序中使用Arc.UserDialogs ActionSheet。但是我无法在操作表项目上附加图标。它要求一个字符串值。我设置了图片名称,但无法正常工作。

 UserDialogs.Instance.ActionSheet(new ActionSheetConfig()
                            .SetTitle("Choose Type")
                            .Add("Default", null, "icon1.png")
                            .Add("E-Mail", null, "icon2.png")
                        );

1 个答案:

答案 0 :(得分:1)

我在VS中测试了您的代码,可以像以下屏幕截图一样向Arc.UserDialogs ActionSheet添加/设置图标。

enter image description here

您可以将这些图片放在android的drawable文件夹中

enter image description here

在IOS中,1.双击Assets文件夹,如以下屏幕截图所示。

enter image description here

然后创建Image(单击左上角的加号),将图像放入1x enter image description here

这是我的演示(我在android中测试过,很正常)。 https://github.com/851265601/ToolbarItemDemo