I am using xamarin forms for my project.
I am using Picker in forms. When the picker items has long text, then it will wrap like multilines.
But it shows like below image:
I am using Renderer Page in android and add the below code:
Control.SetSingleLine(false);
But it is not working. Can anyone please help to resolve this issue.
Related
I have used entry and Picker in collection view header and it works fine in android.But in ios when I click on the entry or picker the page is getting down.Is there anyway to resolve this!?
I have issue similar to https://gitub.com/xamarin/Xamarin.Forms/issues/9879#issuecomment-609627755
I am new in xamarin forms now am facing issues, am using Listview itemtemplate inside Editor that editor should be multiline but am not scroll the text, it only scrolls the listview not inner text, Please suggest me ideas should be highly appericate.
I tried also Listview this way in my code using Listviewrenderer using Nestedscrollview enabled
I need to set AutomationId in the navigation back button in order to automate the testing. I am using Xamarin forms default navigation back button, so where I need to add the AUtomationId.
Please help me to solve this issue.
I want to develop a custom popup that works exactly like a picker. The only difference I am looking out for is that I want a view or page to be in the popup content rather than the basic picker items.
Have you checked Rg.Plugins.Popup ?
https://github.com/rotorgames/Rg.Plugins.Popup
You can create your own pages and choose where and how they will popup. Animations ,click to close, timeout closing and many other features are supported.
i want realize a page like the one below, using xamarin.forms mixing up some renderers.
This is a pure Android example, and it works fine http://blog.iamsuleiman.com/toolbar-animation-with-android-design-support-library/
but how to achieve it with .forms?
As shown in the example code, the page is composed by a
CoordinatorLayout
. AppBarLayout
.. CollapsingToolbarLayout
... ImageView (etc...)
. RecycleView --> It should be fine use the .forms listview here, but how?
If you insist on forms project and not native I would go by inserting complete native page into xamarin forms project. You can find more info how to create a renderer for native page in forms: https://blog.xamarin.com/customize-your-xamarin-forms-app-with-pages-for-each-platform/