[mono-android] Need help with an error

2012-01-27 Thread bauermt40
Hello, I have a project that I'm trying to build in Release mode. The project compiles and runs on my phone without any errors, but when I go to build in Release mode I get the following error. Below that is an example of the BaseAdapter class that I'm implementing, which is based off the example

[mono-android] ExpandableListView ChildClick

2011-09-27 Thread bauermt40
Hi everyone, I'm stuck on how to handle a child click with an expandable list view. Can someone please point me in the right direction? [Activity(Label = "My Activity", MainLauncher=true)] public class ExpandListActivity : ExpandableListActivity { ServiceFactory sf = new Servi

[mono-android] RegisterForContextMenu doesn't appear to be working

2011-10-27 Thread bauermt40
I am trying to implement a ContextMenu from a button, but it doesn't appear to be working. I register the button, but when I click the button, nothing is happening. Any ideas? Also, I'm using MonoDroid 1.2. Thanks. public class MainActivity : Activity { protected override void OnCreate(Bun

Re: [mono-android] RegisterForContextMenu doesn't appear to be working

2011-10-28 Thread bauermt40
Thanks for the reply and I did finally figure that out. I didn't realize the context menu was invoked by long press. No bug, just a noob developer. -- View this message in context: http://mono-for-android.1047100.n5.nabble.com/RegisterForContextMenu-doesn-t-appear-to-be-working-tp4943954p4946913.

[mono-android] Switching from Mono to Java

2012-01-05 Thread bauermt40
Hi, I am currently building an app using monodroid. Down the road, if I choose to rebuild the app using Java instead, can i submit the java version to the marketplace if I use the same keystore? I want to prevent users from having to completely uninstall and reinstall my app. Thanks. -- View this

Re: [mono-android] Switching from Mono to Java

2012-01-05 Thread bauermt40
Awesome! Thank you so much for the quick response. On Thu, Jan 5, 2012 at 10:12 AM, Jonathan Pryor-2 [via Mono for Android] wrote: > On Jan 5, 2012, at 10:03 AM, bauermt40 wrote: >> Hi, I am currently building an app using monodroid. Down the road, if I >> choose to rebuild the

[mono-android] ViewHolder Implementation

2012-01-05 Thread bauermt40
Hi, I'm stuck. What exactly do I need for the first parameter of convertView.SetTag([int], holder)? public override View GetView(int position, View convertView, ViewGroup parent) { ViewHolder holder; if (convertView == null) { convertVie

Re: [mono-android] ViewHolder Implementation

2012-01-06 Thread bauermt40
I was able to figure this out. Maybe it was a noob thing, but I wanted to post the correct implementation for anyone else who's struggling with the ViewHolder. public override View GetView(int position, View convertView, ViewGroup parent) { ViewHolder holder; if (c

[mono-android] Debug.Keystore for Google Maps

2012-01-17 Thread bauermt40
Hi, I must be missing something. I've read that the debug.keystore is automatically generated, but I can't, for the life of me, find it anywhere. Especially in ..\obj\Debug. Can someone please point me in the right direction? Thanks. -- View this message in context: http://mono-for-android.104710

Re: [mono-android] Debug.Keystore for Google Maps

2012-01-17 Thread bauermt40
Totally overlooked that. Thank you so much. -- View this message in context: http://mono-for-android.1047100.n5.nabble.com/Debug-Keystore-for-Google-Maps-tp5152974p5153027.html Sent from the Mono for Android mailing list archive at Nabble.com. ___ Monod