Xamarin.Android (previously known as Mono for Android) is an implementation of Mono that runs on the Android platform, allowing you to write Android applications in C# using native Android libraries as well as using the .NET BCL (Base Class Libraries).

learn more… | top users | synonyms (1)

0
votes
0answers
20 views

async / await in .NET 4.5 PCL targeting Mono for Android?

I'd like to make a Portable Class Library (PCL) version of a .NET 4.5 library capable of targeting Mono for Android. This library also makes heavy use of async / await. I understand that the latest ...
0
votes
0answers
12 views

Android Scaling & Density Issues

I have two near identical tablets I'm developing on, both ASUS Transformer's. The higher end model has the following specs (where dm = ApplicationContext.Resources.DisplayMetrics): dm.Density = 1.5 ...
0
votes
0answers
25 views

How can I resolve “No resource identifier found” for attributes in my Android project?

I'm trying to implement a simple GridLayout in Xamarin Studio, as outlined in this example: ...
1
vote
1answer
9 views

Topleft and bottom right points in android google maps version 2 monodroid

newly I switched to Google Maps version 2 for android in my monodroid project. in version 1 by using LatitudeSpan and center point of a the map view we can execute the topleft and bottomright point's ...
0
votes
0answers
42 views

Imageview doesn't load the image programatically

I have a layout with a ImageView component I want to load a image programatically I tried to load a image from a file and from a drawable resource, in the OnCreate() event and when a button is ...
0
votes
0answers
13 views

GEO location, and reverse geo coding not working in Xamarin

I have been trying from long time to get following program run http://docs.xamarin.com/recipes/android/os_device_resources/geocoder/reverse_geocode_a_location CODE : using System; using ...
1
vote
1answer
30 views

How to display MessageBox in Monodroid

How can I display a message box in Xamarin.Android? How can I get the yes or no response from the message box? --- Updated : myBtn.Click += (sender, e) => { new AlertDialog.Builder(this) ...
0
votes
1answer
15 views

Branching and assembly names

We use Visual Studio and TFS to do version/Branch control. I'm developing a monodroid application and I want my client to have a UAT version as well as a live version. The way (As far as I know) to ...
0
votes
1answer
26 views

Xamarin serial port comms support

I can't seem to find the answer to this anywhere in their docs. We are considering using Xamarin for an business app that will need to interface over RS232 with an external device. The first version ...
1
vote
0answers
29 views

Xamarin : using native libraries exception recived

So I am new to Xamarin and android development , i have created a shared library that is written in C++ , compiled under armv7eabi (using Atollic GCC) , but i am having issues using the shared library ...
0
votes
0answers
16 views

Does Android have equivalent for Obscured and UnObscured events

In Windows phone there is Obscured and UnObscured events; it is a dialogbox pop up when the phone rings or MessageBox pop up. Thanks
1
vote
1answer
17 views

MvvmCross: Android Application attribute

When using MvvmCross for Android, where is the actual Application object normally used by Android? This object is not always needed unless you want to customize the tag in the manifest. Mono for ...
2
votes
1answer
36 views

Creating a PCL that targets Monodroid

I am looking at the shiny MVVMCross project, specifically the N+1 days of MVVMCross series, and I notice that @slodge creates a PCL that targets Mono for android and Monotouch (at 1:10). I have ...
0
votes
1answer
50 views

How to Get GPS base on Wifi using Xamarin

This code base on the link below: http://docs.xamarin.com/guides/android/platform_features/maps_and_location/part_3_-_location_services I could not get any Lat/Lon ( Gps/Wifi) The code is below : ...
5
votes
0answers
70 views
+50

Xamarin Android: Keep control with Alert Dialog until a button is clicked

We are using a static Alert Dialog to get confirmation from the user for certain actions. In our call to Show() we want to keep control until the user clicks a button so that we can return the button ...
1
vote
1answer
48 views

showing some thing like र on the android dropdown

I'm trying to show currency symbols on the dropdown in my monodroid application. As you know currency units contain some thing like "र". but when I run application, the drop down just show a ...
0
votes
1answer
47 views

Cannot displaying MapView

I tried below tutorial MapView http://docs.xamarin.com/guides/android/platform_features/maps_and_location/part_2_-_maps_api I have added 1) Mono,Android.Googlemaps 2) using Androis.Locations; 3) ...
1
vote
1answer
14 views

MonoCross: KeyNotFoundException in MXDialogActivityView.OnCreate() when re-starting application

I've been using Xamarin's Mono for Android and the MonoCross framework to develop an application, which is currently running under Android (2.3, 4.0 and others). In my app, I have a main activity, ...
1
vote
1answer
50 views

keep getting this error when compiling xamarin android (mono for android) app

When I compile one of the Android code samples from Xamarin I get the following error on compile, what can I do to fix it? C:\Program Files ...
0
votes
1answer
24 views

Need help on getting google map Key for map application

I visit the below link to get Google map Key Visit https://developers.google.com/maps/documentation/android/ a) have create a Project in Google Api console b) have created a SHA1 certificate ...
0
votes
1answer
71 views

How does Xamarin for Android (Mono for Android) compare to native Android development?

I've recently chosen to learn C# and develop mobile apps using C# on Xamarin. Particularly for Windows Phone and Android development. I know that Windows Phone app development is mostly C#, and that ...
0
votes
0answers
25 views

Android - Database is not being seen when debugging program - NULL object reference

I have a NULL object reference to a database that I have in the ASSETS folder, as directed. I rebuilt the project and tried different names like mydatabase.db and mydatabase.s3db for a SQLite ...
1
vote
2answers
52 views

Is Reactive Extensions 2.1 PCL compatible with Xamarin?

Riddle me this: Can the new PCL version of Reactive Extensions be made to work with Xamarin? If so, how?
0
votes
0answers
26 views

Overriding Map in Google Android Map Version 2 monodroid

As we know google do not support google android map version 1 from some times ago. xamarin also have done some works for supporting this version. I now want to update version 2. In version 1 many ...
0
votes
0answers
17 views

xamarin Android emulator not able to sync account

I am trying to create a calendar app for that I am trying to add account on the android emulator. But when I try to add it it tell me that it "Could not open connection to server" Please check the ...
0
votes
0answers
47 views

How to get GPS or Location

I tried the tutorial GPS and I got the following error messages. What seems to be the problems? http://docs.xamarin.com/recipes/android/os_device_resources/gps/get_current_device_location using ...
0
votes
1answer
42 views

null reference exception in android view Visibility binding

I have an MvxListView with a few items. Each item consists of 2 components, one is visible and the other is not (Gone). The gone component visibility property is bound to a boolean property on the ...
0
votes
2answers
29 views

Any twitter api or complete solutions for monodroid?

Looking for good solution for Twitter login and posting something... but there is no idea for now. How to do it in xamarine( IOS mono has complete solution, but monodroid...) help me please, if ...
0
votes
1answer
16 views

monodroid Steema.TeeChart.TChart : how to disable user interaction

can any one please tell me how to disable user interaction in TChart Control. i know how to do this in monotouch linechart.UserInteractionEnabled = false;
0
votes
0answers
19 views

Delay between calling NotifyDataSetChanged and seeing the change happen

I have the following code in the constructor of my BaseAdapter<T> that tells the list to update when the FinishedSearch Action is fired. public SearchListAdapter (Activity oContext) : base ...
2
votes
1answer
40 views

Handle tasks when activity is stopped in monodevelop

I am developing an android app using Xamarin and I am having issues using background threads. In their Multitasking demo (http://docs.xamarin.com/samples/MultiThreading) the authors create a task that ...
0
votes
0answers
19 views

“generator.exe” exited with code “-1073741819”

I'am developing a android application in Visual Studio and the Xamarin c# monodroid development tools. I have some external JAR files that i embed into my projects. Most of the project work fine but ...
0
votes
1answer
36 views

Xamarin.Android application architecture

I have one of those questions which are hard to be asked or answered in a forum. Recently I have been tasked with designing (and implementing) an application which would run on android OS. Since I ...
0
votes
1answer
22 views

How to work with AndroidManifest and Assembly

Base on Xamarin Studio instruction, I follow it to create the AndroidManifest which looks as below. <?xml version="1.0" encoding="utf-8"?> <manifest ...
0
votes
0answers
28 views

Implementing a Java.Util.IComparator to sort an ArrayList in Mono Droid

I'm using MonoDroid and I have an ArrayList that I want to sort. The Sort method takes a Java.Util.IComparator object. I tried implementing the IComparator interface but I don't know what to do with ...
0
votes
2answers
36 views

Deploying from xamarin android to samsung s3 jellybean 4.1

Hi guys I have some questions regarding deploying apps from Xamarin for Android. I have a samsung s3 with jellybean 4.1 in it and I want to deploy my app that I developed from Xamarin to my phone. But ...
0
votes
0answers
27 views

Why this Superuser command doesn't work in Mono for Android (MonoDroid)?

I've just written this little function to run multiple SuperUser command in Android: private string RunCommandAsRoot(string[] Commands) { Java.Lang.Process Process = ...
1
vote
0answers
39 views

Reading APK Expansion Files with MonoDroid

I am currently working on porting an XNA Windows Phone 7 game to Android using MonoGame and MonoDroid. I ported the game, added in multiple resolution support and ended up with an APK that is 130 MB. ...
0
votes
0answers
32 views

Android / Monodroid Notifications

I'm creating a messaging application which has Notifications if you receive a new message. I'm using PushSharp to receive messages from GCM. If you click on a Notification the application should show ...
0
votes
1answer
25 views

Why Data Can not Pass to Second Activity

Using XamarinStudio and below code base on the Sample in the tutorial. Here the questions. Do I need to generate the AndroidManifest from the Project Option> Android Application when testing the App ...
0
votes
2answers
29 views

What are manifest and AndroidManifest

i am new to XamarinStudio to create Android App. Here the questions: 1 What are Manifest and AndroidManifest. How to create them or it is auto created? How to setUp a Default Activity for the app ...
0
votes
0answers
33 views

Xamarin.Android: How do you link a static library?

I am trying to link a static library (foo.a) - which contains C++ code - in an Xamarin.Android project following the directions found in Xamarin's docs. Neither the "path sniffing method," nor the ...
0
votes
0answers
13 views

App stucks at RSA.ExportParameters or RSA.FromXMLString

I am using the RSA algorithms in my app, but it stucks at RSA.ExportParameters or RSA.FromXmlString(FromXmlString) method. The code I was using looks like this: rsa = RSA.Create(); rsaParams = ...
2
votes
1answer
49 views

activate logging output in xamarin studio

I write UnitTests (no integration-tests with device and stuff) for monotouch and monodroid in xamarin studio with NUnit. That works great, besides the problem that I don't see any log output created ...
0
votes
2answers
47 views

xamarin.android App signing does not work

So im trying to publish my new android app to the Google PlayStore. From reading this tutorial I understand that I have to sign my app before releasing it to the PlayStore. I did exactly the same as ...
0
votes
1answer
18 views

MonoDroid GetSpans last parameter

I'm trying to use ISpannable in a Monodroid project but am having problems with GetSpans. What I'm ultimately after is a Rich Text editor such as at: ...
0
votes
0answers
42 views

Android Application Crash Management using Xamarin

General Scenario : While developing android application using xamarin, we tend to crash the application multiple times and this behavior is perfectly acceptable and normal. But some time, when i ...
0
votes
1answer
29 views

Xamarin Studio Starter: Why am I getting native library reference error on build without native libraries?

I've been playing around with the Starter Edition of Xamarin Studio to determine if it will meet my needs. I understand (so I thought) the limitations of this edition; 32K compiled IL limit, no native ...
0
votes
1answer
35 views

Alertdialog error in Xamarin (Mono) Android

I searched internet and couldnt find a solution. This is the best i could develop myself. But I get error on first line. I get this error: Error CS0428: Cannot convert method group 'Create' to ...
0
votes
1answer
39 views

Sharing classes between Xamarin.Android and ASP.Net MVC 4

I have created a solution with 3 projects in Xamarin Studio: A ASP.Net Server with POCOs, a Shared Library Core and an Android Project but referencing the shared library project on the Android side ...

1 2 3 4 5 42