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
3answers
47 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
28 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
45 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
36 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
26 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
31 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
34 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
54 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
51 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
49 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
38 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
38 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
42 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 ...
0
votes
2answers
146 views

Installing com.google.android.gms on emulator, packet exist error

I'm trying to install com.google.android.gms v 3.0.27 on my android 4.2 emulator . But when I run adb install. it execute some minuets and the say: INSTALLATION_FAILURE_PACKAGE_EXIST the emulator ...
3
votes
1answer
58 views

MvvmCross - Android: How to perform App initialization on Main Thread

I have an Android application using MvvmCross. The App launches via an MvxSplashScreenActivity as the main launcher and I provided a setup class deriving from MvxAndroidSetup. It seems however that ...
0
votes
1answer
72 views

GoogleMap android api version 2 Requires 3027100 ? (monodroid)

Finally after some days challenges I can run the GoogleMapAndroid api version 2 on the monodroid by this link: https://github.com/xamarin/monodroid-samples/tree/master/MapsAndLocationDemo_v2 but when ...
2
votes
1answer
45 views

RegisterForContextMenu seems to have no effect

From what I've been able to gather from google, calling RegisterForContextMenu on a view should be all I have to do if I want OnCreateContextMenu to be called when I long click on said view. This does ...
2
votes
1answer
72 views

Best way to have single View/ViewModel/Xaml link to multiple Json resource files in MvvmCross

Inside my application I have many help pages, which all have a similar layout - header and bodytext. The way I have it structured at the moment, for every single Help page I have a View, ViewModel, ...
0
votes
1answer
35 views

NullReferenceException when calling ShowDialog on Android 2

I get a NullReferenceException when calling Acitiviy.ShowDialog(int) in response to a user tapping a button. The exception occurs in Android 2.1 but not in Android 4.2. Here is the Stacktrace: ...
-1
votes
0answers
38 views

Touch/click event in Android [closed]

I have a problem. There is a field of hexagon (only a drawing): I need a touch/click event with a ID as return value for each hexagon. I don't know, if I should use Images, Buttons or sth. else. ...
4
votes
1answer
86 views

Searching for the best PCL profile for cross-platform development

I am working on extending number of supported platforms for my app, it used to support .NET4/Windows Store/Windows Phone, but I hope to also cover Mono for Android and iOS. I've put all business ...
0
votes
1answer
63 views

adding $ANDROID_HOME/tools to $Path in windows

I'm trying to run this codes: cd google-play-services_lib android update project -p . ant debug from this tutorial . I installed ant using winant but reagrding to android I can not add this to ...
1
vote
1answer
33 views

aChartEngine shows two charts instead one

please look at the images, the first is the adb emulator and the second is a Samsung Galaxy Tab. Image1 Image2 I don't know why in the Tab aChartEngine shows two charts. This is the code: ...
0
votes
1answer
38 views

Android app using Monodroid unable to get external program to correctly open file

I'm trying to get external applications to open different file types determined at runtime. From everything I've looked at I feel I'm doing it right but none of the programs open the files correctly. ...
1
vote
0answers
47 views

Building mono with android ndk standalone toolchain (android ndk r8e)

I'm attempting to build mono using the ndk standalone toolchain from the android ndk (version r8e), but I am unable to complete the build. I setup my standalone environment like so: export ...
0
votes
1answer
34 views

How do you set the 'linebreakmode' for an android textview (FormattedText)

I'm from iOS and tackling android dev using Mono (Xamarin). Is there a way to set the textview linebreak mode for the textview like we do for iOS. When I set the Text attribute for the TextView it ...
0
votes
1answer
62 views

Using IsolatedStorage in Xamarin

I am attempting to build an application using Xamarin's Mono stuff (MonoTouch and MonoDroid). I am trying to write some code that will allow me to place content in local storage. Coming from a Windows ...
1
vote
1answer
76 views

How to correctly implement type forwarding?

I am about to write a shim assembly for Microsoft.Threading.Tasks.Extensions to be able to build Mono projects (I described the issue here), but there are a few things I am not sure. 1) Assembly ...
0
votes
0answers
27 views

Recyle Issue with Caching Weak Reference Bitmaps

I'm caching bitmaps like so.. Bitmap bm = null; bm = aBitmap.Copy(Bitmap.Config.Argb8888,false); cache.AddOrUpdate(stringKEY,bm,TimeSpan.FromDays(7)); bm.Recycle(); However, later when trying to ...
0
votes
1answer
70 views

Xamarin.Android application doesn't start the second time

I've created a simple application with Xamarin trial edition, which just shows a splash screen. After I hit "Run" in Xamarin studio it deploys and runs just fine, but if I click "Home" on the device ...
0
votes
1answer
20 views

Defining colours as resources in mono for android

I am worried that this is a duplicate question, but I have read these three questions and I'm still at a loss: Setting background color from colours.xml throws invalid operation How to define ...
0
votes
1answer
100 views

Does Xamarin's Android for Mono support same .NET libaries as Mono?

At a high level, my question is: Is everything that is supported by Mono on a Linux platform supported by Android.Xamarin on an Android platform? More information: I am investigating the ...
0
votes
1answer
61 views

geo fix not working on Android app built with Xamarin mobile

I have an Android app that I am building with Xamarin mobile (MonoDroid). The app needs to get the gps coordinates of the current user. Unfortunately, I cannot seem to get the PositionChanged event to ...
0
votes
1answer
39 views

Image Caching from http sources

I've read in a post from December 1st 2012 at Slodge bloch that File and DownloadCache plugins could be used for downloading and caching images from http sources. I think that's what I need in the app ...
1
vote
2answers
115 views

Microsoft.Threading.Tasks.Extensions in Xamarin Mono projects

I have built a NuGet package for my Simple.OData.Client with support for Xamarin Android and iOS. This library uses Microsoft.Bcl.Async. Tests using Android and iOS simulator went OK, but when I ...
0
votes
1answer
64 views

Google map android api version 2 for Andoroid 2.2 and upper monodroid

I'm trying to use Google Map Andorid API version 2 for android 2.2 and upper. I use MapsAndLocationDemo_v2 and change the items that listed in the readme for supporting android 2.2 and uppper but I ...
0
votes
0answers
35 views

AudioRecord throwing Exception

I have written an application in Mono for Android, but it does not run on all phones. The caught exception is shown in the image below. Where is the error? I want to read data from the buffer to ...
0
votes
0answers
36 views

App doesn't show anything

I was testing out a trial of Xamarin's Android system in VS which was working fine with the default hello world incrementing number app. Randomly, it seems, the deployments failed and would only show ...
-2
votes
0answers
28 views

PushSharp Monodroid service [closed]

I use pushsharp in my application but if I do not open the activity notifications not shows. This is my Manifest: <uses-permission android:name="android.permission.INTERNET" /> ...
0
votes
1answer
53 views

Tab Fragments with MvvmCross

I'm working on an app that uses MonoTouch, MonoDroid, and MvvmCross. My app has a screen that has tabs. I need that screen to work on both Android and iOS devices. In looking at the tutorials, it ...
1
vote
1answer
55 views

Using MvxGridView in MvvmCross

What I want to do is s simple screen showing multiple items in a Grid. This can on android easily be archived using a GridView. In MvvmCross I guess I have to use MvxGridView to archive the same. ...
-1
votes
4answers
71 views

Upgrading to the Google Maps Android API 2 monodroid

I have an android application that use Google Maps Android API Version 1 for its map. Now, I want to use Google Maps API Version 2 for on my application ...
1
vote
1answer
73 views

Unable to build SignalR.Android because of missing System.Net.Http

I'm trying to use SignalR in my MonoDroid project. So I downloaded DEV branch from https://github.com/SignalR/SignalR/tree/dev and when I open solution for Android, it is not possible to build it, ...
0
votes
0answers
59 views

Error while trying to add an WCF webservice reference to a Xamarin.Android project

I am currently developing an Android app using Xamarin.Android and created a webservice using WCF. I have the webservice running on an IIS webserver and when I go the url it does work. When I'm adding ...
0
votes
1answer
64 views

How can I Access an already existing SQLite database in mono for android

I'm currently working on a project where the application I'm creating needs to include a database. I've got no problems so far creating my own SQLite database from my application and accessing it is ...
1
vote
1answer
50 views

Moving an ImageView located in a WindowManager doesn't work properly

I'm trying to draw an Icon over everything on the screen (TOP MOST) similar to the chathead of new Facebook messenger I have create a service to work in the background and based on a specific ...
0
votes
0answers
41 views

BluetoothSocket.Connect giving 'Service Discovery Failed'

Good Afternoon; I am new at developing Android apps with Monodroid for C# and im trying to connect to my specific device (which is a Jabra Headset) as soon as my application runs. I have followed and ...
0
votes
1answer
50 views

Android Scheduled Timer - Mono for Android or Java

I need to run a method every 5 seconds using Mono for Android. Is there a scheduled timer in Android? I have tried this code, however, it fails to start: using System; using ...

1 2 3 4 5 42