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
2answers
58 views
App-Icon Create an Overlayinformation (Number)?
How can I clone this behaviour (iOS) on an Android-App?
Technically its definitly possible as I have an app by my own on my Androidphone - its an Email-App with a very similiar indicator on the ...
0
votes
3answers
81 views
Is it possible to send a custom object with an Intent as an Extra
I'm asking this question: instread of giving a string, a int and so on, can we push a custom object during the creation fo a new Intent?
newActivity.PutExtra("JsonDataResult", business.getJSON());
...
0
votes
1answer
71 views
Push-notifications and MVVMCross
We are facing a problem with handling a notification on Android with MVVMCross.
I implemented the default void CreateNotification() but when we tap the notification in the notification center, the ...
0
votes
0answers
80 views
Autocomplete when editing android layouts in Visual Studio with Xamarin
I'm currently running a latest Xamarin.Android trial installation with up-to-date Visual Studio 2012.
When opening .axml file in visual studio I can see a visual designer and can use it normally, ...
0
votes
0answers
156 views
How to upload Image from android using Monodroid on asp.net server
I am making an application in android using mono for android framework, in my application i need to provide user the functionality of uploading their profile picture.
where as this profile pic ...
0
votes
0answers
13 views
unsupported_response_type when calling Google API
I'm trying to use the Xamarin google-api library without success. I get the Google login prompt, but when I'm redirected back I get an error message "unsupported_response_type".
In the Google API ...
1
vote
2answers
60 views
Package with JSON.NET is very large
I am using JSON.NET for parsing JSON in my Mono for Android application. But when I make a package, the resulting file is 17 MB with Linking: None.
With Linking turned on, the package size is reduced ...
0
votes
0answers
66 views
Android webview: loading html file with images
I have been working with both an IOS and android version of an app, when loading html with images with ios the reference to the file works fine. But, with the android I am having some issues loading ...
1
vote
0answers
128 views
Mono for Android / MonoTouch System.Net.WebException: Request aborted
When I use the following code for a request to a FTP server.
If the request failed I get an error. I don't know why.
Code:
try
{
FtpWebRequest request = ...
0
votes
0answers
21 views
Azure Client IServiceFilter doesn't work
I'm trying to implement an Azure Mobile service in my android application, using the official xamarin's azure component. I've to invoke the asure service using a filter, and I've simply done this:
...
0
votes
0answers
37 views
HTML5 application in Monodroid
I am very new to android development (2 days) and I have been smashed with a pre-existing html5 application which is currently in the apple app store. I tried using WebView to load the local html ...
0
votes
1answer
203 views
programatically assign progressbar style android
I'm generating scrollbars programatically and I have defined a style to chenge the color, so my question is naturally: How set the scrollbar style of my scrollbars?
ProgressBar progressBar = new ...
0
votes
2answers
115 views
How to remove HomeAsUpButton arrow from ActionBar Sherlock?
I want to remove from the arrow image from the HomeAsUpButton.
I tried removing the arrow's ImageView from the layout (nothing happens) and also tried using ...
0
votes
1answer
93 views
xamarin don't build proper apk with android sdk
Yesterday I was able to build apk files.
Since I have add lots of pictures and ressources to theme the app, and when I want to test it on my device, Visual Studio build me one app that crash.
I set ...
0
votes
2answers
95 views
I get an Android.Views.InflateException when I use SetContentView (Resource.Layout.Main) that includes tabs
I get an Android.Views.InflateException when I use setContentView (Resource.Layout.Main) that includes tabs and can't understand why.
I've been trying to find others with my problem, but it seems ...
0
votes
0answers
51 views
Linq monodroid Where does not return my object
I use this in my android project :
private readonly IMobileServiceTable<Product> table;
...
table = serviceClient.GetTable<Product>();
...
List<Product> _items = this.table.Where(x ...
0
votes
0answers
69 views
programatically change the color of a progressbar in xamarin (android)
I'm making a android app with xamarin. I want to change the Color of the progressbar and I'm making those bar programatically (without xml)
So at this point I'm making that piece of code :
...
3
votes
2answers
131 views
card.io Mono for Android (Xamarin Studio)
Has anybody successfully created a card.io wrapper they're willing to share that can be used in a Mono for Android application or can somebody shed some light on what I'm doing wrong?
Create a new ...
0
votes
0answers
31 views
How to return a concatenated query into a class with SQLite
I am using SQLite in an Android app I'm writing. The code concatenates two parameters into one in the query but does not return it back into the holding class
My query code looks like this
public ...
6
votes
3answers
222 views
Warnings after update Xamarin Studio
I just updated Xamarin Studio the the the latest version (Xamarin.Android
Version: 4.6.4 (Business Edition)) and im receiving a lot of warnings after the update..:
...
1
vote
2answers
99 views
programatically add elements to a scrollview gives me Java.Lang.IllegalStateException
I'm trying to add textview and progressbar's to a scrollview but it gives me a Java.Lang.IllegalStateException:
I'm using xamarin so this is not java but c# but it's the same principe
here's the ...
0
votes
1answer
81 views
How to use .jar in monodroid project?
I want to use Baidu Map Android SDK in my monodroid project.This SDK download url is
http://developer.baidu.com/map/static/doc/BaiduMap_AndroidSDK_v2.1.0_All.zip
I followed the instructions described ...
0
votes
2answers
73 views
Pushing near real time position updates to a number of clients
I'm currently in the early stages of designing a cross-platform mobile app (iOS, Android, WP8). At its core, the application will allow proximity based interaction between an unknown number of client ...
0
votes
0answers
28 views
MonoDroid Refresh the AXML editor with new image
Using the Xamarin 4.0.3 axml editor, how do I get it to refresh the image of a control, like an Image View, when I edit the image. No matter what, the image stay the same as the first version. Some ...
0
votes
0answers
30 views
Monodroid custom sytle editTextStyle not working
I try to apply a custom style to all EditText across the whole application (hence through an application theme). Here is my custom theme and custom styles
<resources ...
0
votes
0answers
102 views
MonoDroid: Unhandled Exception Recovery
I'm trying to add a default handler to my application so I can recover from otherwise unhandled exceptions.
I've found three mechanisms provided by Android/MonoDroid that, as far as I can tell, ...
0
votes
0answers
128 views
How to Move Image about Circular Path In Android using [Mono for Android]
Scenario : I have 3-4 Image of Planets (earth.png,pluto.png,mars.png).
I need a code in C# to rotate this planets around a Fixed Center, where as i event want to show toast message when user clicks ...
0
votes
2answers
72 views
SharedPreferences value does not stick
I am trying to save a string to SharedPerferences like this:
Write
var prefs = Application.Context.GetSharedPreferences ("Janssen", FileCreationMode.WorldReadable);
var prefEditor = prefs.Edit ...
1
vote
1answer
50 views
Unexpected crash using jni in monodroid project
I've been trying to import a simple hello world NDK project into a monodroid project using Xamarin Studio.
The NDK part of the project compiles and builds fine, I can invoke the native methods but ...
2
votes
1answer
107 views
Mono for Android - All activities in Portrait orientation
I have a MonoDroid application and I'd like to force all my Activities to be presented only in Portrait orientation.
I'd though about creating a an Activity base classe such as:
[Activity ...
0
votes
1answer
55 views
How make a viewmodel return data to another?
I'm trying to find a solution to passing back data from a viewmodel to another when I call DoClose()
I've got a view where the user can add informations in edittext, there is also a button that open ...
0
votes
2answers
64 views
The name 'Assets' does not exist in the current context
I have a problem with this line of code. Want to create sqlite database on the device.
string dbPath = System.Environment.GetFolderPath(System.Environment.SpecialFolder.Personal) + "\\test.db";
...
1
vote
2answers
155 views
ServiceStack web service hosting on monotouch/monodroid?
I'm currently trying to host a REST webservice on ios/android using Xamarin and monotouch/monodroid. I already successfully have a basic webserver running using HttpListener, but now I would like to ...
1
vote
1answer
92 views
Cross-Platform reading of xml files
I have some Config files as part of my solution on Windows Mobile. I am porting the code to MonoForAndroid and MonoTouch, so I want to keep my code unchanged as much as possible.
When loading these ...
0
votes
3answers
64 views
How can I use threading in MonoDroid such that it will be cross platform compatible with MonoTocuh
Specifically when doing MonoDroid uses of threads all the documentation I can find recommends calling RunOnUiThread() to call the callback. There is a similar function that can be used on MonoTouch ...
0
votes
1answer
65 views
Mono for Droid: how to plot route
I am working on Mono for Android App and want to show a route map between two points. I implemented their Xamarin.Android Map API to get the current location.
I couldn't get how to plot a route from ...
1
vote
1answer
36 views
Type reference forwarding in the MonoDroid project requiring it
Regarding to the solution described in this post, a third assembly is required to forward the type resolution to the correct assembly.
When adding this reference to the Android class library project ...
3
votes
1answer
47 views
differences in implementing an interface on Windows, MonoForAndroid, and MonoTouch
I am porting some old code that I have on Windows Mobile. The code compiles fine for .NET 3.5 CE. I created a project in MonoForAndroid and referenced the same code (.cs files refereneced as Links) ...
0
votes
2answers
194 views
Xamarin and cross-platform webservice access + json parsing
I'm searching for a way to retrieve data (formatted in json) from an API and parse them.
I really want to use the code both for android and for IOS. I already saw examples but they didn't work for ...
0
votes
0answers
85 views
Sqlite Transaction - Closing vs Commit vs Rollback
I'm using a sqlite transaction with a "serialize" isolation level to block writes while reading two tables, in succession, so that an update to one of the two tables doesn't happen between the reads.
...
0
votes
2answers
53 views
Is it possible to modify the installation of a .apk, so that it creates a folder or some different files?
is it possible, that the .apk installs (while it is installing the rest of the app) an folder with some files in it? it would be nice, if the user could install the app, sync it with the programm on ...
7
votes
2answers
750 views
Is it possible to run Xamarin Mono on Linux?
I want to know if it is possible to run Xamarin on Ubuntu. I don't like java, so I want to make Android apps with C#.
Is a package for Ubuntu, because I haven't seen one so far?
Or...
Can I run ...
2
votes
1answer
44 views
MainProject is always expected to update a class library resource string
When I created a project in Visual Studio 2012 where Xamarin is installed, I choose Android Application as the project's template.
Later, I added an Android class library to the solution. The class ...
0
votes
2answers
154 views
(Android Xamarin) Get Resource string value instead of int
Im just starting to create a simple android app with the use of Xamarin using VS2012.
I know there is a type of Resource just for strings.
In my resource folder, i have an xml file like this:
...
1
vote
0answers
49 views
Monodroid OnDismiss with Dialog Fragment
I have a custom DialogFragment which is called from a Fragment Activity which uses a ListView.
In API 14, it works fine. The NotifyDataSetChanged() is called when the Save button is pressed in the ...
0
votes
0answers
166 views
How Do I Create Working Android Virtual Devices for Nexus 7 and UG007 MiniPC?
Xamarin Studio Business Edition has a device definition for the Nexus 7 but the AVD I created from the device throws an internal error when attempting to deploy with Xamarin Studio and hangs at the ...
0
votes
0answers
29 views
Non-Editable scrollable TextView [duplicate]
Ive got this piece of android layout.
<ScrollView
android:id="@+id/SCROLLER_ID"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
...
0
votes
1answer
76 views
Car HUD and android bluetooth communication
I currently have a streaming internet radio app that runs on android. I am wanting to have it communicate with Car HUDs so I can display the current song info on the HUD screen.
For example, I just ...
0
votes
1answer
79 views
How to add ActionBar tabs in monodroid or java
I want to know how can I add some tabs to my actionbar using mono for android?
I need 3 tabs that each one keep an activity and a layout and the swipe should be enabled :)
Is it possible? If not how ...
1
vote
1answer
39 views
System.TypeLoadException when using System.ServiceModel
I'm using a Core project to provide all datas to my Android project and my IOS project.
So in the Core Project I'm using a WSHttpBinding binding. It request the using of "System.ServiceModel".
The ...





