Update XS and Fody problem
I've updated the Android SDK and then XS. With these updates, now I have a problem with "Fody" package....
View ArticleSQLite
Hi there This one creates a table with 2 columns (I'm using the SQLite.Net-PCL Package). [Table ("Table")] public class Table { [PrimaryKey, AutoIncrement] public int Id { get; set; } public DateTime...
View ArticleXamarin.Forms 1.3.x on WinPhone crashes when hardware back button is pressed
Hi There, We had been using Xamarin.Forms 1.2.3 and everything was working well. Now while we're trying to upgrade to the latest version of Xamarin.Forms, we are coming across this issue on Windows...
View Articlehow to change the stacklayout height dynamically? (equivalent to Wrap Content...
Hi, I have a stacklayout renderer and I am adding views in stacklayout. I want to wrap the stacklayout height as the added view content. Here is my renderer. ` public class ATabViewRenderer :...
View ArticleUsing the Xamarin Designer with Xamarin.Forms
Hi Guys, Is it possible to use Xamarin Designer to facilitate building Views and drag-and-drop functionality and property fields within Forms? or is this currently limited to XAML. Cheers
View ArticleXamarin.Form.View to native view (ex. Android.View)
Is it possible to get Android.View (and equivalent view object in iOS) from Xamarin.Form.View? I have custom control which takes dependencies to Android.View. I am writing custom renderer which would...
View ArticleAutomated UI Test
I'm looking for automated UI test tool (mainly for iOS but also for Android). I'm using Xamarin.forms for iOS but in the near future will add an Android project. I noticed that Xamarin.UITest will run...
View ArticleWhich is the best way to design the UI in Xamarin.Forms
I am very new to Xamarin Forms. I tried to design UI using XAML. but some controls are not provided in XAML. But I can achieve all the control using C# as i seen in the many tutorial. Please suggest...
View ArticleXlabs 2.0 - Master-detail navigation
I'm starting using Xlabs, and am struggling with how to go from master to detail, passing the object to edit/view. NavigationService.NavigateTo(parameter,animated) seems to be the right candidate - but...
View ArticleCarouselPage inside ContentPage
Hi! Is it possible to add a CarouselPage inside another Page? I need to put certain views (like a header/footer) out of the CarouselPage. http://postimg.org/image/ymrye8jnp/ Thanks!
View ArticleNavigationPage and ToolbarItems
I've been trying to get a couple of Forms pages set up under Android (for the moment, iOS to follow). The main page has a single ToolBarItem that is set to show the second page when clicked. When the...
View ArticleIsn't pickers supported on XF.WinPhone project?
I want to use Windows.Storage.Pickers.FileOpenPicker in my Xamarin.Forms.WinPhone project. No compilation errors but at run time it raises 'Method not supported' error. Any work arounds?
View ArticleHow would you use a Xamarin Component in Xamarin Forms?
I am trying to implement the Signature Pad Xamarin Component in a Xamarin Forms Solution and have implemented a signature activity for Android and UIViewController for iOS. Then in my forms I have: #if...
View ArticleListView with CustomRenderer Label NOT re-rendering on scroll back up/down
Hi, so I updated my Xamarin.Forms iOS app with the latest bits, and what was working, a fairly complex ListView with a CustomRenderer Label in it, no longer functions correctly. I think it must be the...
View ArticleRemove top header line in TableView
Hi, Using Xamarin Forms 1.3.3.0 I'm using TableView controls in a grid in order to build a TabMenu bar (each menu being a ImageCell with an image and a text). How can I get rid of the top line that...
View ArticleAndroid 5.0.2 - bug - Page.IsBusy display nothing
Hi, all my pages have a property IsLoading which is binded on Page.IsBusy. When i do IsLoading = True; it works on iOs, iPad, all Android 4.x but not on Android 5.0.2. Very easy to reproduce
View ArticleHow to fix WP TabbedPage Tab Caption in LowerCase
Hi, Example: public class LoginPage : TabbedPage { public LoginPage() { var profilePage = new ContentPage { Title = "Profile", }; var settingsPage = new ContentPage { Title = "Settings", };...
View ArticleHow To set a Content View Dynamically
So I have my page: <?xml version="1.0" encoding="utf-8" ?> <ContentPage xmlns="http://xamarin.com/schemas/2014/forms" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"...
View ArticleEnvironment.NewLine
I have a custom renderer for a listview, code pasted below. My problem is that when I include an "Environment.NewLine" in the text of the secondary text, it is not placing text on a new line. It just...
View ArticleRemove backbutton on a page that is not the current view?
Dilemma: I navigate to page 1 from page 0 by by pushAsync(new Navigationpage(new Page1)); I land on page 1, that has a backbutton pointing to page 0. I now navigate to page2. I land on page 2, that has...
View Article