Tagged Questions
Xamarin is a software company, which is created by the engineers behind Mono, Xamarin.iOS (formerly called MonoTouch), Xamarin.Android (formerly called Mono for Android), Xamarin.Mac (and the opensource MonoMac) and Xamarin Studio (and the open source MonoDevelop).
0
votes
0answers
6 views
“No view found for id for fragment” when using nested fragments in android
I have an Activity called summaryActivity includes a fragment called completionFragment which has a popup called payment popup which has an EditText component when focus to it I need to display the ...
0
votes
3answers
7 views
What is TableItem in BaseAdapter?
I Was following this tutorial about creating a custom Adapter and ListView
...
0
votes
0answers
10 views
how to hide navigation bar after user interaction in android
i have a videoview which plays the video in landscape fullscreen i have set the flags to hide navigation bar and action bar in onResume,
now when the video is playing user touches the screen ...
0
votes
1answer
15 views
Xamarin iOS: How to connect a view from a storyboard to a controller?
I have an storyboard with a ViewController and inside the ViewController I have a UICollectionView with a prototype cell.
I already have an "MyCollectionViewController" (because I try to wrap my ...
0
votes
1answer
7 views
xamarin android: Listviewitemclick doesn't trigger when I click a multiline textview inside the listitem
I have a listview, there is a simple textview and a multiline textview inside a listitem. Basically the list item click doesn't trigger because of the multiline textview, but if I set the focusable ...
0
votes
1answer
28 views
C# DateTime datebase export in Excel sheet
I am struggeling with the correct display of dates in database exports. In a xamarin application (C#) birthdates are stored in a local database using the following method.
public static long ...
0
votes
0answers
14 views
Xamarin Unified API - How to handle array binding using IntPtr?
I've been using my bindings and static Accelerate Obj C library for a long time in Xamarin.iOS. Due to the unified API and the 64 bit arch in newer iOS devices i was forced to successfully update and ...
1
vote
2answers
18 views
How to terminate a Xamarin application?
How can I terminate a Xamarin application from any of the activities?
I have tried both System.Environment.Exit(0) and System.Environment.Exit(1) as well as Finish() and killing all the activities.
...
0
votes
1answer
12 views
Xamarin.Forms Shared is not display image in Android view, but display image in iOS view
I am creating welcome screen in Xamarin shared application.Welcome screen has to show the image few seconds then navigate to login page.It is perfectly working in IOS, but not displaying image in ...
0
votes
2answers
23 views
How to setup Visual Studio for Xamarin.Android?
In the developers preview of VS2015 I've seen that you can now develop Android Apps in Visual Studio using Xamarin.
After a few hours of googling I still haven't found how to setup VS2015 for Android. ...
0
votes
0answers
14 views
How to consume .net web service(.asmx) in android xamarin project?
I want to consume a web service in xamarin android application using soap format, below is my code:
System.Net.ServicePointManager.Expect100Continue = false;
TempConversionService.TempConvert ...
1
vote
0answers
12 views
Issue with Haneke component for Xamarin, possibly linker issue
Hi! :)
Haneke component for Xamarin seems to be quite solid, nevertheless I'm having strange issue with it on devices though on sim all ...
0
votes
1answer
15 views
Page lifecycle events in xamarin.forms
I develop my first xamarin.forms app. I am excited from xamarin.forms. But I miss several events (or I did not find theme until now).
Are there som page-lifecycle-events in a ContentPage from ...
0
votes
1answer
9 views
How to Create a Custom Listview without extending List Activity?
I Want to Create a List View with a Custom layout which will contain A image and text
But all the tutorials i find all extend List Activity but i cant extend List Activity because i need to add ...
0
votes
1answer
27 views
Bind list of ImageSource to list
I have this class:
public class Car
{
public string Name { get; set; }
public ImageSource Image { get; set; }
}
I have this ObservableCollection of cars:
private ...