[mono-android] MonoDroid custom View doesn't show child

2012-07-04 Thread dma
I have pretty simple custom view: public class TestControl : RelativeLayout { private readonly Context _context; private TextView _textLabel; public TestControl(Context context) : base(context) { _context = context; LayoutParameters = new LayoutParams(300, 200);

[mono-android] IOIO board

2012-07-04 Thread Paul Johnson
Hi, Has anyone had any success using the IOIO (yoyo) board with m4a? The driver code is opensource, but in Java and as such, it's possible that some bits won't be implimented. http://www.coolcomponents.co.uk/catalog/ioio-android-p-717.html for more details. Paul

Re: [mono-android] AXML Hang

2012-07-04 Thread Atsushi Eno
It is likely because you have API Level 16 (Android 4.1 framework) installed. It is known to break the MfA (as of 4.2.3), so please try removing it from SDK manager and see if it still occurs. Atsushi Eno DirkDiggler wrote: Hi, I've recently installed the trial version of Mono for Android.

Re: [mono-android] Sqlite question

2012-07-04 Thread Ted
A good article on the topic http://www.enterra-inc.com/techzone/handling_sql_issues/ -- View this message in context: http://mono-for-android.1047100.n5.nabble.com/Sqlite-question-tp5682786p5710736.html Sent from the Mono for Android mailing list archive at Nabble.com. ___

[mono-android] AXML Hang

2012-07-04 Thread DirkDiggler
Hi, I've recently installed the trial version of Mono for Android. When I try to open an axml file in either MonoDevelop or Visual Studio it just hangs. What can I do to fix this. I've tried rebooting etc. Is there an error log somewhere I can look at? --Windows 7, 64bit -- View this message

Re: [mono-android] TouchDB-Monodroid

2012-07-04 Thread Narayan Sainaney
Hello, Turns out, the main error I was experiencing was due to a native library. The ABI for libcom_couchbase_touchdb_TDCollateJSON.so was set to armeabi and this does not automatically copy the lib to armeabi-v7a. The core TouchDB project now compiles and it seems that it is able to create/dele

Re: [mono-android] TouchDB-Monodroid

2012-07-04 Thread Atsushi Eno
Hello, Narayan Sainaney wrote: Hello, I am trying to create a Monodroid wrapper for the TouchDB project available here (https://github.com/couchbaselabs/TouchDB-Android/) cool :) TouchDB is a lightweight embedded database that supports sync to cloud based couchbase DB’s such as http://w