Best way to cache credentials on device?
What is the best way to cache/encrypt credentials in a Xamarin Forms app?
View ArticleHow to hide iOS Back Button?
How can i hide the iOS Back Button with Xamarin Forms? When going from a Login Page to Home Page.
View ArticleUnable to get image.setBinding for Image.Sourceproperty to work.
I tried to edit the example in the FormsSample so that it would show a listview of local images. My model looks like this class Mentor { public Mentor(string name, string profession, string...
View ArticleWhat is the best way to convert an Android Bitmap to an ImageSource?
I have tried: Parcel p = Parcel.Obtain(); bmp.WriteToParcel( p, ParcelableWriteFlags.None ); var imgsrc = ImageSource.FromStream( () => new MemoryStream( p.CreateByteArray() ) ); Where "bmp" is of...
View ArticleError Xamarin.Forms Android Project
Hi, I created xamarin.forms project ios project is ok it worked. but android project was given error. 07-21 14:12:08.233 W/ResourceType( 2788): No package identifier when getting value for resource...
View ArticleIs there a cross-platform way to initiate a phone call?
Is there a cross-platform way to initiate a phone call?
View ArticleNavigation from Xamarin.forms to windows phone page
Hi, I am using xamarin.forms(portable) project and I know about windows page navigation to xamarin.forms. But can anyone tell me how to navigate xamarin.forms page to windows or android or iOS screen.
View ArticleUnable to load a custom Font by following walkthrough..
I'm trying to load a custom font by following your walkthrough , including the blog post it refers to, without success. I keep getting a null argument exception. Is anyone else having this issue? I'm...
View ArticleTimeout on WebRequest
Hey, I want to set a timeout in a httpwebrequest. The property "Timeout" seems to be ignored. Does anybody have an idea for a workaround? My Code: var Request =...
View ArticleChanging a View from one parent to another crashes
When I execute this code with latest version (1.2.1.6229) ContentPage cp = new ContentPage (); Label l = new Label (){Text="test"}; ContentPage cp2 = new ContentPage (); cp.Content = l; cp2.Content =...
View ArticleGeting the value of a Picker in Xamarin Forms
How can i get the value of any Picker, is there any property like .Value or .selectedValue? or how can i achieve this in xamarin forms? or do i have to binding an object with BindingContext and get the...
View ArticlePLss help unable to link sdk assemblies
Error 57 The "LinkAssemblies" task failed unexpectedly. Xamarin.Android.XamarinAndroidException: error XA2006: Reference to metadata item 'System.Runtime.CompilerServices.ConditionalWeakTable`2'...
View ArticleHow to use custom class in Xaml?
I want to use a custom class in Xaml file like bellow, <Button x:Name="loginButtoniOS" Text="Login" x:Class="Custom.CButton" /> but seems not works
View ArticleSQLite works well with Androïd, with iOs but not with Windows Phone 8 in...
I give a link (below) with a small project "Xamarin Forms". It's a simple access to a Table in a SQLite database. => https://github.com/smouligneauxmw/POCSqliteCrossPlatformXamarin This project...
View ArticleXamarin.Forms 1.2.2 Pre-released!
Hey guys, You can get the pre-release on nuget.org. Please report any issues on the bug tracker. Feel free to also report them here or link to your bugs here. Release notes! API Changes...
View ArticleToolbarItems not shown if PushModalAsync is used to show the page
When PushAsync is used to show below page, toolbar items are shown. But they are not shown if PushModalAsync is used. 1) If anyone can brief me why this happens. 2) Also when should I choose...
View ArticleThe directory is not empty.
Package creation failed. The directory is not empty. Xamarin.Android.Common.targets Path= C:\Program Files(x86)\MSBuild\Xamarin\Android\Xamarin.Android.Common.targets
View ArticleChanging master rows from the detail page in Xamarin Forms
Is it possible to change master page(MasterDetailPageDemoPage.cs) list view rows from the detail page (NamedColorPage.cs) as per the Xamarin Forms example. Actually I want to implement record...
View Article[Android] "The 'LinkAssemblies' task failed unexpectedly"
I'm getting this error in my Forms app. My app targets Android 14. I did not create it from the Xamarin.Forms project template, but rather re-purposed the original app while trying to upgrade to...
View ArticleListView Selected Item overlaps absolute positioned item
My ListView items have absolutely positioned elements inside of it. When I select an item in the ListView, it overlaps the absolutely positioned elements. Can i prevent this or is it a bug?
View Article