How can I create animation for ListView item?
I have ListView with custom ItemTemplate which contains the Image. ListView placed in center of Grid. Need to animate Image move to the right Grid corner when I click on "+" button. I know that I can...
View ArticleBinding and x:Reference
Hi Folks, Sometimes I want a binding of an attribute to refer to some property of a named element. I can bind some other element's TextSize property to that element by using...
View ArticleINSUrlConnectionDataDelegate interface methods not exposed?
Handle and Dispose seem to be the only items in the interface -- which seems the same problem as this old iOS one: https://forums.xamarin.com/discussion/31355/methods-missing-in-nsurlconnectiondelegate...
View ArticleHow to Implement Clickable Image Button to execute ICommand?
Totally new to Xamarin and in learning phase. Here is my basic question I have a button which has an ICommand which executes certain step of instructions on my VM class, currently looking to change the...
View ArticleXF Android : Could not load assembly Microsoft.Windows.Design.Extensibility
Hello , I have update Xamarin.Forms to 2.0.0.6490, But get this exception when compile: Exception while loading assemblies: System.IO.FileNotFoundException: Could not load assembly...
View ArticleSaving Multiple Tab Control Values in TabbedPage
Hi, I am using the TabbedPage Tabbed Page as mentioned below with more than three tabs. After entering/selecting values in each tab, Finally i want to save all the values entered in each to Server by...
View ArticleBind multiple properties to a single label in custom view cell
Is it possible to append multiple properties when binding a label's Text property in a custom view cell? label.SetBinding(Label.TextProperty, "Property1") label.SetBinding(Label.TextProperty,...
View Articlecannot convert from 'HelloXUWP.App' to 'Xamarin.Forms.Application' in Win10 UWP
The LoadApplication(new HelloXUP.App() ); call need as specified in https://developer.xamarin.com/guides/xamarin-forms/platform-features/windows/installation/universal/ fails with "cannot convert from...
View ArticleNavigationBar Background Image Renderer Android
Hi Guys, I have been working on Xamarin Forms and I wanted to set an image as background image into navigation bar but I couldn't I have tried a lot but no luck at that time. Then something hit in my...
View ArticleHow do i open a mail launcher in Metro app (WinRT 8.1+ ) - Xamarin.Forms
I am trying to send mail using launcher in PCL WinRT app. Launcher works proper for normal mail, but if i try to send mail with HTML body, it fails to launch. Launching mail pop-up using : string...
View ArticleHow can I make tail in chat textview, I have made it oval shape but I want...
I want tail like in whatsapp or IOS chat.
View ArticleHow to make listview inside a scrolllayout scrollable
I have a content page with stacklayout with search filters and a listview with custom viewcell item templated. The problem if there is to many data on the listview than the height of the parent i cant...
View ArticleXamarin.Forms linker
Hello again, Finally I am finished with developement of my Xamarin.Forms application so I started deploying an apk. Of course I tried to add Link SDK Assemblies only, because otherwise the apk would be...
View ArticleHow I can disable highlight item in ListView?
I could not disable highlight item. I tried to use this code (I took it from forum): listView.ItemTapped += (object sender, ItemTappedEventArgs e) => { if (e.Item == null) return;...
View ArticleChanging Navigation Bar icon color in iOS and Android and Windows
I was going through below post of Adam J Wolf where he explains how to add a navigation bar icon, My question is that can we change the color of the bar icon from Blue to something else, In my case I...
View ArticleIs there any way to count sleep time of our app ?
I am creating portable project.Is there any way to count sleep time of our app ?
View ArticleAndroid: Full Screen Support for Modal Navigation Page
Hello All, I am new to the Xamarin and currently having a little problem with a navigation page. The application is using Master-Page based navigation. On one of the pages, I wish to display a modal...
View ArticleFontAwesome Label: Here's how!
Here's how you'll use the new FontAwesome label (Any Graphic font will work, but FontAwesome is Awesome): var coolLabel = new FontAwesomeIcon(FontAwesomeIcon.Icon.Gear) Here's how to set it up....
View ArticleWebView not working inside MasterDetailPage Page and IsVisible causing crashes.
Hello. I followed this guide here to create a project that uses MasterDetailPage https://www.syntaxismyui.com/xamarin-forms-masterdetail-page-navigation-recipe/ But my issue is now that WebViews aren't...
View ArticleShow and Hide controls present in listview's view cell based on server response
I have a listview in which I have created a custom view cell, in that custom view cell I have a label, based on the server response i want to show and hide the label in different ViewCell. My question...
View Article