Re: [mono-android] Win Phone Development and xamarin relatedbasic question

2012-03-19 Thread Jignesh Desai
Thanks. I have place an order of the same from the local store. Another thing that I learned was that under Win7 Phone, I cannot iterate through contact list, Is that true ? Regards -- From: "Berndt Hamboeck" Sent: Saturday, March 17, 2012 3:

Re: [mono-android] Asynchronous display pics into listview

2012-03-19 Thread Stuart Lodge
There are several ways to get something like this to work. One simple way is to maintain a dictionary of row numbers (position) to ImageView's - that way the row number can be your unique number. You do of course need to make sure that your dictionary is kept up to date if your convertView's get

[mono-android] Calling System.Net.WebClient.DownloadData(string url) without INTERNET permission does'n cause any exceptions

2012-03-19 Thread PVoLan
Trying to call System.Net.WebClient.DownloadData(string url) without in manifest doesn't cause any exceptions. It you accidentally forget to add "uses-permission", it makes difficult enougth to find an actual reason, why DownloadData() does't work properly. -- View this message in context: ht

Re: [mono-android] Calling System.Net.WebClient.DownloadData(string url) without INTERNET permission does'n cause any exceptions

2012-03-19 Thread Tomasz Cielecki
I tried playing around with it in a Java environment, and it does not seem to throw any exceptions apart from UnknownHost exception, which does not say anything about that the INTERNET permission has been set. On Mon, Mar 19, 2012 at 10:51 AM, PVoLan wrote: > Trying to call System.Net.WebClient.D

Re: [mono-android] Asynchronous display pics into listview

2012-03-19 Thread Michel
After search a lot for my problem, i see all work fine… Just for my test, I never scroll to see the result… so i’ve a last problem i don’t understand. The first time the listview is call, all pics are loaded in the first line…. But after, if I scroll down, picts are loaded in the good line

[mono-android] FlurryAnalytics

2012-03-19 Thread Patrik Ahlenius
Has anyone implemented/knows where to get hold of MonoDroid bindings/JNI wrapper for flurry analytics? Thanks! - Patrik ___ Monodroid mailing list Monodroid@lists.ximian.com UNSUBSCRIBE INFORMATION: http://lists.ximian.com/mailman/listinfo/monodroid

Re: [mono-android] profiling support in monodroid?

2012-03-19 Thread mcleodia
Hi Jon Sorry for the delay in responding. I have been busy trying to gather as much info on the problem as possible. I went away and tried to get the profiler running via environment variables as per your suggestion, however I didn't see a way of invoking the profiler other than using the comma

[mono-android] Losing Visual Studio Intellisense

2012-03-19 Thread Julian Booth
Hello has anyone has any experience of the intellisense in Visual Studio disappearing when in a Mono for Android solution? I recently had to uninstall and re-install Visual Studio (from Ultimate to Premium versions). Ever since I keep losing the intellisense in Visual Studio ONLY in Mono for And

[mono-android] namespace System.Drawing in Xamarin API

2012-03-19 Thread GigaNTes
I installed Android.Mono for developing android application. I don`t see System.Drawing namespace inside VS2010. But these classes are presented here http://androidapi.xamarin.com/ Could someone explaine, can i use System.Drawing classes like Color, Rectangle, Point, Size for developing Android app

[mono-android] Error message when trying to compile and test on Android emulator

2012-03-19 Thread closdesign
I am getting an error of Unhandled exception in button_ok_Click:Task. See exception for details. When I view the details I get the message in the image: http://mono-for-android.1047100.n5.nabble.com/file/n5578375/Mono-Error.jpg We are also having issues running the Honeycomb Gallery example. It

Re: [mono-android] namespace System.Drawing in Xamarin API

2012-03-19 Thread Jonathan Pryor
On Mar 19, 2012, at 5:09 PM, GigaNTes wrote: > I installed Android.Mono for developing android application. I don`t see > System.Drawing namespace inside VS2010. But these classes are presented here > http://androidapi.xamarin.com/ They're in OpenTK.dll, so you need to add an assembly reference

[mono-android] JNIENV Call Syntax

2012-03-19 Thread GavinBryan
I'm trying to make a call from c# to a Java library and can't figure out the bits of JNIENV syntax, I'm able to get so far and was wondering if anyone could help me. I have put the Java Code and the C# code that I've got so far. I've just listed some of the main members in the Java PushManager clas

Re: [mono-android] JNIENV Call Syntax

2012-03-19 Thread Jonathan Pryor
On Mar 19, 2012, at 8:56 PM, GavinBryan wrote: > I'm trying to make a call from c# to a Java library and can't figure out the > bits of JNIENV syntax You're on the right track... :-) > // This is the Java call I'm trying to make in C# > String apid = PushManager.shared().getAPID(); > IntPtr ipP