[mono-android] ExEn - Cross platform games

2011-05-11 Thread Kervin L. Pierre
Hadn't seen this before... "The power of C# and XNA comes to iOS, Silverlight and Android" http://andrewrussell.net/exen/ Anyone have any experience with this product? Best regards, Kervin ___ Monodroid mailing list Monodroid@lists.ximian.com UNSU

Re: [mono-android] ExEn - Cross platform games

2011-05-11 Thread John Rayner
You may also find this interesting http://monogame.codeplex.com/ MonoGame is a free OpenGL implementation of the XNA Framework for MonoTouch, MonoDroid, Mac OS X & now Windows. Our goal is to allow XNA developers on Windows & Windows Phone 7 to port of their games to the iPhone / iPod / Android /

Re: [mono-android] ExEn - Cross platform games

2011-05-11 Thread simone basso
and this http://smnbss.wordpress.com/2011/02/25/planetx-multiplatform-iphone-development-part3-monogamewhat-a-mess-iphone-wp7-xbox-xna-monotouch-xnatouch/ Basically ExEn is a fork of XnaTouch (then renamed monogame) S From: John Rayner Sent: Wednesday, May 11, 2011 5:52 PM To: Discussions rel

Re: [mono-android] ExEn - Cross platform games

2011-05-11 Thread Kervin L. Pierre
Thanks John, Simone, This is great background info. I'm disappointed that the ExEn author didn't mention MonoGame anywhere on his website. MonoGame looks like an amazing project. Best regards, Kervin From: monodroid-boun...@lists.ximian.com [monodroi

Re: [mono-android] ExEn - Cross platform games

2011-05-11 Thread Joaquin Grech
He does mention it. Just click on the video he has posted about the project, he clearly states it. *Joaquin Grech Gomendio* *International MBA & Computer Scientist. IE Business School & NYU* *http://www.joaquingrech.com/* On Wed, May 11, 2011 at 1:56 PM, Kervin

[mono-android] Attachments to E-mail?

2011-05-11 Thread Neal
Hello, Does anyone have a quick sample of adding an attachment to an e-mail message? I'm using IO.File.ReadAllBytes(MyFilepath) in the Input.ExtraSteam but it's not working. Any help is appreciated. Thank you, Neal ___ Monodroid m

[mono-android] For those seeing MonoDroid revert to Evaluation

2011-05-11 Thread Neal
I don't know why it happens but in the middle of a programming session even MonoDroid will show the click to activate when deploying to the device. I close VS 2010 and then reopen it, sometimes this alone fixes it. Today it happened again. I clicked the "click to activate" and then clicked the C

[mono-android] Newbie: How To start new Activity

2011-05-11 Thread G . Völkl
Hi, in MainActivity I want to start AddActivity: Intent intent = new Intent(); intent.SetClassName(this, "AddActivity"); StartActivity(intent); Nothing happens. [Activity(Label = "AddActivity")] public class AddActivity : Activity { protected override void OnCreate

Re: [mono-android] Newbie: How To start new Activity

2011-05-11 Thread Mike Child
This works for me. StartActivity(typeof(AddActivity)); Mike Child On Wed, May 11, 2011 at 4:35 PM, G. Völkl wrote: > Hi, > > > > in MainActivity I want to start AddActivity: > > > > Intent intent = new Intent(); > > intent.SetClassName(this, "AddActivity"); > > StartActivity(intent); > > > >

Re: [mono-android] Newbie: How To start new Activity

2011-05-11 Thread G . Völkl
Thanks. It works for me, too. Gerhard Von: monodroid-boun...@lists.ximian.com [mailto:monodroid-boun...@lists.ximian.com] Im Auftrag von Mike Child Gesendet: Mittwoch, 11. Mai 2011 22:46 An: Discussions related to Mono for Android Betreff: Re: [mono-android] Newbie: How To start new Act

Re: [mono-android] Attachments to E-mail?

2011-05-11 Thread Liam
Hi Neal Not sure how you are sending your email but if you are using an Intent to send it via an email app here is how to do it: Intent sendIntent = new Intent (Intent.ActionSend); sendIntent.SetType ("application/zip"); sendIntent.PutExtra (Intent.ExtraStream, Android.Net.Uri.Parse ("file://

Re: [mono-android] Newbie: How To start new Activity

2011-05-11 Thread Carlo Bolz
Or just add: intent.SetClass(this, typeof(AddActivity)); StartActivity(intent); Regards, Carlo -Original Message- From: G. Völkl To: "'Discussions related to Mono for Android'" Date: Wed, 11 May 2011 23:08:06 +0200 Subject: Re: [mono-android] Newbie: How To start new

[mono-android] android:cacheColorHint="#00000000"

2011-05-11 Thread www
I have a listView with a background, When I scroll it turns black, I read the docs and it said to change cacheColorHint as below but it does not seem to work in Java. android:cacheColorHint="#" Any ideas? ___ Ed Scott | Micr

Re: [mono-android] ExEn - Cross platform games

2011-05-11 Thread Konaju Games (Dev)
Andrew Russell, a member of this list, is the author of ExEn. Dominique Louis, also a member of this list, is currently driving MonoGame. MonoGame has made great advances since ExEn was forked from it, but ExEn is still quite a good library. I personally prefer MonoGame, but it's good to have ch

[mono-android] debugger in VS.NET

2011-05-11 Thread Wally McClure
I gave a presentation today regarding mobile development technologies and "how I got here." As you can imagine, I talked a lot on MonoTouch and Mono for Android. I had a long conversation afterwards with one attendee regarding the Mono mobile tools. He works at a company that primarily uses

[mono-android] Licensing question

2011-05-11 Thread Tom Opgenorth
This might not be the best place for this kind of question, but figured I'd ask here first: Typically I'll have a couple of VM's at any one time, my laptop, and a desktop. Is there anyway I can share / use my Mono for Android license across these PC's / VMs? I only ever have VS2010 running on o

Re: [mono-android] Licensing question

2011-05-11 Thread Dean Cleaver
Good question Tom - I hadn't thought of this but I am in the same boat as I typically develop on my desktop, but if I go on the road I work on a laptop - I guess I need MonoDroid installed on both, but like you never use both at the same time (in fact, when sitting next to my desktop, the MacBoo

Re: [mono-android] ExEn - Cross platform games

2011-05-11 Thread Jesús Bosch Ayguadé
Both libraries work over mono plattform. Does Exen bring something new?Regards,Jesus Bosch AyguadeEnviado desde Windows Phone De: Konaju Games (Dev)Enviado: jueves, 12 de mayo de 2011 2:37Para: Discussions related to Mono for AndroidAsunto: Re: [mono-android] ExEn - Cross platform games > Andre