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).
0
votes
0answers
2 views
SQLite.net exception on screen rotation on android 4.1+
I am currently working on a cross-platform application using Monodroid/Xamarin. It uses a SQLite.net database and at the moment I have only built the Android UI.
In the application there is a long ...
0
votes
2answers
12 views
MvvmCross: How to navigate from regular view to Mvvm viewmodel on Android?
I am slowly migrating my app over to MvvmCross on Android. I have not converted all Activities over to ViewModels yet. Therefore, I need to navigate from an Mvvm-controlled Activity to a regular ...
0
votes
1answer
12 views
Monodroid ActionBar show menubutton on Galaxy
I need to show the menu button, in the ActionBar, even if it has a hardware key.
I found this in android:
try {
ViewConfiguration config = ViewConfiguration.get(this);
Field ...
0
votes
0answers
26 views
Expandable ListView with section header
I want to create an Expandable list view with section headers. I attempted two example methods of the the following example,
Merge Expandable Example by CommonsWare (http://bit.ly/gm6roZ)
Separating ...
1
vote
1answer
61 views
MVVM Cross support for Xamarin Studio on a Mac
I have been exploring the use of MVVM Cross on Xamarin Studio on a Mac. I've been going through the tutorials for N+1 days of MvvmCross on YouTube and I've run into a roadblock that hopefully someone ...
1
vote
1answer
20 views
MvvmCross: What is the best way to get the selected item from an MvxListView in android?
I'm using MvvmCross v3.06 and I've defined a MvxListView in android which is bound to a list. I can see the list but can't work out the best way to get hold of the item that is selected when I click ...
0
votes
1answer
23 views
Doesn't create save database
I`m using monodroid and work with database via sqlite-net library.
In one application transaction all data correctly putting and getting from database,
but when I deploy application next time my ...
0
votes
0answers
15 views
Null referance on dynamic viewPager when creating an eventhandler
I got this MonoDorid app that have some static viewpagers in a activity, when i tried to make the viewpagers dynamic, i got a null reference, on the onClickEvent. further details on my code can be ...
0
votes
0answers
26 views
GCM (PushSharp) is unreliable
I've been using PushSharp to implement GCM push notifications in my app. It usually works great, but sometimes, push notifications simply are not delivered. It seems that the server portion works as ...
0
votes
2answers
48 views
Support Fragment Manager always return null in google maps android version 2
I'm using this code from xamarin studio sample for showing google maps android version 2 in my project:
_mapFragment = SupportFragmentManager.FindFragmentByTag("map") as SupportMapFragment;
...
0
votes
0answers
64 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
1answer
31 views
Android Scaling & Density Issues
Update: Some research has turned up that the Asus Transformer TF700T (high end) should have a pixel density of about 224, so the values of 159 android is reporting are either erronus, or have been ...
0
votes
0answers
36 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
13 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
46 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
32 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
16 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
32 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
30 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
44 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
66 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
2answers
110 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
49 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
16 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
61 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
74 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
54 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
31 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
19 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
49 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
47 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
36 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
19 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
20 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
43 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
23 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
39 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
23 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
29 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
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
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
43 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
34 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 ...

