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
1answer
71 views

How to cast a Java.Lang.Enum to an integer?

In monodroid, i have a java binding which returns a Java.Lang.Enum object. When i try to cast this object into an int it throws. System.InvalidCastException: Cannot cast from source type to ...
0
votes
1answer
35 views

MonoDroid Java Bindings : Control constants naming

When creating Java Bindings with MonoDroid, it converts Java Constants names containing underscores to C# camel case names: [Register ("SOME_CONSTANT_NAME")] public const int SomeConstantName = (int) ...
0
votes
1answer
47 views

MonoDroid Java Bindings: UnsatisfiedLinkError

In my MonoDroid Java Bindings Project I'm also using a native lib (somelib.so), which is included as "AndroidNativeLibrary" The library seems to be loaded successfully: "... Trying to load lib ...
0
votes
0answers
87 views

binding a java library monodroid

What i'm doing wrong? I have a android library java project with this class: package android.plugins.widget; import java.util.Calendar; import java.util.GregorianCalendar; import ...
0
votes
1answer
163 views

Converting Java nested classes to Xamarin.Android

A typical pattern in Android/Java development is to have a nested class that access methods from the parent class: public class MainActivity extends FragmentActivity { // implementation public ...
0
votes
2answers
145 views

Run command line tool in new process in Android

We have a unix command line tool that we need to run from an Android app. There isn't a library that exists that achieves the same functionality we are looking for. What is the proper way to bundle ...
1
vote
0answers
666 views

Mono for Android performance comparing to Java [closed]

I already read some bunch of articles, blogs and stackoverflow question about it but I ask it again for I am confused about a thing. MonoDroid was a project before Xamarin show up and of course ...
1
vote
0answers
103 views

MonoDroid: Fails to load referenced assembly because of a subreference

I am trying to bind some Jars into my MonoDroid project. I have succesfully managed to build the Java Binding Library so far, but when I reference the project from the Application Project, the Java ...
0
votes
3answers
129 views

Monodroid BitmapFactory.DecodeFileDescriptor Bitmap always null

I use the following method to prevend a outofmemory exception, but the Bitmap ist always null. Has anybody an idea? public Bitmap readBitmap(Android.Net.Uri selectedImage) { Bitmap bm = ...
0
votes
2answers
150 views

OnGlobalLayoutListener in Mono for Android

Can anybody explain me this Java code in C#, since I use Mono for Android? For example I can't find OnGlobalLayoutListener in Mono for Android. On Android it looks like this: ...
0
votes
2answers
164 views

Preventing UI from freezing while processing data

I am having some problems with BluetoothChat (that I beleive its the same code on bot Java and MonoForAndroid) example app. I have connected my Android to an microcontroller using a Bluetooth module. ...
0
votes
0answers
59 views

How can i set a java eventhandler like onAdReceived from c#?

I succesfully integrated the AdMob support into my Mono Game, but i wish to update my application to handle the different oucomes that might appen in case the Ad is received, or if there are errors. I ...
1
vote
1answer
207 views

Android - Launch Google Voice app and dial number

We are working on an Android tablet-only app. We need to be able to launch the Google Voice app for a certain telephone number programmatically. We tried this (which it would probably work to launch ...
4
votes
2answers
1k views

Custom Layout for DialogFragment OnCreateView vs. OnCreateDialog

I'm trying to create a DialogFragment using my own Layout. I've seen a couple different approaches. Sometimes the layout is set in OnCreateDialog like this: (I'm using Mono but I've gotten somewhat ...
0
votes
1answer
92 views

Passing a signed byte array through a BluetoothSocket in Monodroid

I am having an interesting problem using Monodroid to send commands to a device via Bluetooth. I am using this Monodroid method: BluetoothSocket.OutputStream.Write(byte[] buffer, int offset, int ...
0
votes
0answers
68 views

mono for android & twitter4j / java binding library build error CS0234

i'm trying to bind Twitter4J on Mono for Android and getting this build error: (actually 4 errors, similar) The type or namespace OAuthToken does not exist in the namespace Twitter4J.Auth. Are you ...
0
votes
1answer
181 views

Monodroid JNI for Java reflection to call a private method

In a Monodroid project, I need to be able to call a private method on a class. From an answer on a related question, it seems that this is possible in Java via reflection: import ...
0
votes
1answer
171 views

How to convert a generic list from and to Java.Lang.Object in Mono for Android

Now I'm facing this problem and don't know about a solution yet. The doc on Xamarin is pretty vague to me on this matter. The fact that Java Generics are implemented as type erase which is quite ...
1
vote
1answer
365 views

What is the simplest way to use Java code in Mono for Android?

I am trying to use popup balloons over custom overlay items in Mono for Android. I found this project https://github.com/jgilfelt/android-mapviewballoons, however it's written in Java. I've started ...
1
vote
1answer
59 views

Is it possible to use a custom android widget written in Java whilst using MonoDroid?

Errmm yeah, I was hoping to use the RangeSeekBar in my MonoDroid application - but honestly, I'm not even sure if this is possible / what the best option is / where to even start? Do I need to port ...
0
votes
2answers
380 views

Anonymous event

I am stuck with writing a C# Mono for Android equivalent of following Java event handler code: public class Player extends ListActivity { private ImageView list;//basically this is a buttona ...
1
vote
1answer
854 views

How to call Mono for Android class from within Android application?

I have created a fairly simple Activity in Mono for Android project: [Activity(Label = "AndroidApplication1", MainLauncher = true, Icon = "@drawable/icon")] public class Activity1 : Activity { ...
0
votes
1answer
361 views

USB Communication, Endpoints in Monodroid/Android

I have a USB device that I'm attempting to communicate to with my Android 4.1 device using the MonoDroid API, and I've run into some issues setting up a proper connection. First, the steps taken to ...
-4
votes
2answers
322 views

P'roblem running Projects in Eclipse [duplicate]

Possible Duplicate: Error generating projects in Eclipse It's about a week I installed eclipse and Android SDK .But when I wanna run my project (even when I open a new Hello World project), ...
0
votes
1answer
183 views

Error generating projects in Eclipse

It's about a week that i installed eclipse and SDK and ... but even when i open a new Hello World project and i want to run that eclipse shows this error: Error generating final archive: Failed to ...
0
votes
1answer
225 views

How to load main screen while on splash screen?

I am developing an android app using monodroid, anyway i have noticed that monodroid apps take longer to stratup so I decided to implement a splash screen. Right now I have implemented the splash ...
2
votes
0answers
107 views

DrawingCache strange behavior with Motorola devices

I'm having a strange issue on some Motorola devices where I'm getting a Bitmap that's cropped and scaled inside of an ImageView. This is programmed in mono for android 4.2.4. Basically my issue is ...
-2
votes
1answer
340 views

Android expand animation [closed]

I can't find out how to make expand animation happen. [Button1] [Button2] I have two Buttons and when "Button2" is pressed some RelativeLayout with lots of content expands from bottom of "Button1" ...
1
vote
2answers
400 views

How to syncronisize two Listview positions

I have two ListViews. Is there any way to synchronize the position of ListViews when I scroll any one of the Lists. Im implementing an AbsListView.OnScrollListener, registering to the ListView. When ...
0
votes
2answers
984 views

Mono for Android: Displaying a file chooser?

I am trying to port code from this tutorial to C# using Mono for Android. Here is my code: FileLayout.axml <?xml version="1.0" encoding="utf-8"?> <LinearLayout ...
0
votes
0answers
151 views

MonoDroid C# Translate

I am translating a java class to C#, however, I am unsure that I have done it properly. In my code below, RewardRequestListener's OnFinishedEvent should be called, however, it never hits a breakpoint ...
6
votes
1answer
1k views

Android - ListView onItemClick() not firing in 4.1 jellybean

I had a user just install 4.1 (jelly bean), and the ListView onItemClick() stopped working in my app. The event doesn't fire (checked by breakpoint and console) and the UI doesn't appear to visibly ...
0
votes
0answers
125 views

Custom Mono for Android ViewGroup canvas is not clear in DispatchDraw

Sorry for my poor English! I'm trying to paint on a Canvas by overriding the DispatchDraw method in custom Mono for Android ViewGroup. But sometimes the DispatchDraw method is called for example by ...
2
votes
0answers
170 views

Building monodroid sample map applications

I am using the latest download of map sample application 'MapsAndLoactionDemo' from Xamarin and in Visual Studio 2010 I get the following compile error(s): Error 10 ...
1
vote
0answers
539 views

MonoDroid or JAVA for android development [closed]

I know that there have been some questions about this subject but not lately, and as you probably know MonoDroid gets better as time pass. The thing is that I'm used to program in C#, I've been ...
3
votes
4answers
820 views

What does it mean “W/AudioFlinger( 34): write blocked for 70 msecs, 2236 delayed writes, thread ”?

I have monodroid app which play few sounds in same time, there are many messges like this in log. What does it mean? W/AudioFlinger( 34): write blocked for 84 msecs, 2153 delayed writes, thread ...
1
vote
2answers
259 views

Monodroid Java Binding

I've created a java application to be a go between for my c# app and talking with facebook. This helper class allows me to get friendslists and post on a facebook wall. I've recently had some issues ...
0
votes
2answers
291 views

Android Java to Mono C# - MapView.LayoutParams

I'm porting some Android Java to Mono C# for an Android app. There appears not to be the following MapView.LayoutParams in the Mono for Android C# IDE: MapView.LayoutParams params = new ...
1
vote
3answers
252 views

Java to C#: Extends in Generic

I am trying to convert this Java (Android) code to c# (MonoDroid) but I don't understand the <Item extends OverlayItem> public class BalloonOverlayView<Item extends OverlayItem> extends ...
1
vote
1answer
73 views

catching server response

I am using Webview to implement browser capabilities in my project. Lets say someone searches for download.com in google, searches for a software (in download.com), and then clicks on the download ...
1
vote
1answer
354 views

How to add .java files to MonoDroid project

I am trying to utilize a custom DatePicker as described here. But I am not sure where in my MonoDroid project to put the .java files in order to create a new instance of the DatePicker. I've tried ...
0
votes
1answer
131 views

Using MonoDroid Library apk from Java code

If i created a apk library with monodroid. Can i u use this just in Eclispe(Java) and do my rest code in Java ?
1
vote
1answer
304 views

Monodroid JNIEnv.FindClass from library

In Monodroid I'm trying to access a custom Java class through JNIEnv. When I add the class in the main project I can access it in the main project and in a library project. For example: If ...
3
votes
2answers
1k views

Mono for Android or Java and WCF

I am currently using Mono for Android to develop a mobile application. I have been trying to consume a WCF web service by adding a web reference to it but I can't seem to make the call that way. I am ...
0
votes
1answer
376 views

GoogleMaps Android app implementing on Monodroid

This code is showing the address on a google maps sending the address text to an url and then retrieving it in a Json object, Is there a way to transalate this code to Monodroid using Httppost from ...
3
votes
3answers
327 views

Converting Java to C#: Declaring interface and creating an instance?

I am converting some java code C# for use in my MonoDroid application. I have some snippets where interfaces are declared and then initialized in to objects. I am not 100% sure on the best approach to ...
5
votes
1answer
546 views

Communicate with 3rd Party Java library?

I have just downloaded an evaluation version of Mono for Android - My C# is pretty weak (more VB & Python) and my Java knowledge is nonexistent - so this is all an uphill climb. I need to include ...
1
vote
1answer
217 views

Is a Monodroid app full java bytecode or is it native code?

I would like too know what is deployed and what will run on the android device. Is it pure end to end java byte code or are there some native librairies involved? I mean my android 2.3 destination ...
3
votes
2answers
319 views

How to return Java.Lang.Object from a overridden method in MonoDroid

How do you do the following i MonoDroid? public class ItemListAdapter : BaseAdapter { IEnumerable<Item> items; public override Java.Lang.Object GetItem(int position) { ...

1 2