Welcome to the Xamarin.Forms feedback portal. We’re happy you’re here! If you have feedback on how to improve the Xamarin.Forms, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
In the PDFViewer toolbar, I need to remove the "more-options" button and allow the Save button to be available on the resulting top level. I suppose the other buttons that are sub to more-options would also be visible - like in UWP.
I use the following code to hide a bunch of things. The "more-options" is the only one that insists on being visible in Android. (Note it works how I would expect it to in UWP)
pdfViewerControl.Toolbar.SetToolbarItemVisibility("search", false);
pdfViewerControl.Toolbar.SetToolbarItemVisibility("search-bar", false);
pdfViewerControl.Toolbar.SetToolbarItemVisibility("page-view-mode", false);
pdfViewerControl.Toolbar.SetToolbarItemVisibility("continuous-pages", false);
pdfViewerControl.Toolbar.SetToolbarItemVisibility("page-by-page", false);
pdfViewerControl.Toolbar.SetToolbarItemVisibility("bookmark", false);
pdfViewerControl.Toolbar.SetToolbarItemVisibility("more-options", false);
How can I accomplish hiding the more-options button in Droid?
Thanks!