Re: [mono-android] Error while retreiving data from xml file

2013-02-23 Thread Mike Child
As mentioned previously, please provide the actual error message. It's hard to help without knowing the problem. On Feb 23, 2013 1:20 AM, "krish" wrote: > ha,i changed the code ...i closed the FileStream > even though it is giving error at same line > xmldoc.Load(fs); > here is my modified code

Re: [mono-android] howto install / move apk on sdcard

2012-06-18 Thread Mike Child
I believe it is because of this.android:minSdkVersion="7" Install to SD wasn't added until API 8(I think). I know it didn't exist in 7. Mike Child On Mon, Jun 18, 2012 at 8:26 AM, michelw wrote: > Hello, > > my application doesn't have the option "mov

Re: [mono-android] Using a webservice

2012-03-25 Thread Mike Child
Are you using a Samsung device? If so, what version of Android OS? On Mar 24, 2012 8:37 AM, "Paul Johnson" wrote: > Hi, > > Is logcat enabled on the physical device? My app works fine on the >>> emulator, not a physical device >>> >> >> Yes, logcat is available on both emulators and physical dev

Re: [mono-android] Available images list is empty on starting emulator dialog

2012-02-03 Thread Mike Child
After you install all the sdk software you still need to create an emulator image to use. Go to the following link and towards the bottom it shows how to create a emulator device... http://docs.xamarin.com/android/getting_started/installation/Installation_for_Windows Mike Child On Fri, Feb 3

Re: [mono-android] Gesture listener subclass no longer works with V4

2011-12-30 Thread Mike Child
Like Tomasz said, Inherit from Java.Lang.Object. You should never implement the Handle property yourself. Mike Child On Fri, Dec 30, 2011 at 7:16 AM, Tomasz Cielecki wrote: > Have your class GestureListener inherit Java.Lang.Object, this way you > don't have to Implement the Hand

Re: [mono-android] Using DatePickerDialog

2011-12-20 Thread Mike Child
yes, the month value is 0 based, so 12 is not valid. You would want to use 11. Mike Child On Tue, Dec 20, 2011 at 3:09 AM, Tomasz Cielecki wrote: > I just made a small sample here: > https://github.com/Cheesebaron/MonoDroid.DatePickerSample > > But what your exception is saying

Re: [mono-android] MonoDroid 4.0.1, APP Crash when debugging

2011-12-19 Thread Mike Child
Do you have the HTC sync software installed on your computer? If you do that could be the issue. Mike Child On Mon, Dec 19, 2011 at 7:46 AM, Renato Degelo wrote: > More information: > > I was trying debug in an HTC Glacier... > > Now, i tried debug in an Optimus 2x and ev

Re: [mono-android] App Crashes on Samssung Galaxy SGH-1897 - Uncatchable Exception thrown by mono

2011-12-09 Thread Mike Child
nufacturer/carrier for an Android 2.2 update." Since I see some calls to Reflection.Emit, this may be this issue. Hopefully someone better at reading the log and more knowledgeable than me can help answer. Mike Child On Fri, Dec 9, 2011 at 12:02 PM, klimaye wrote: > The app is on the st

Re: [mono-android] Being driven insane....

2011-11-23 Thread Mike Child
omJson(string json) {   DataContractJsonSerializer ser = new DataContractJsonSerializer(typeof(T));   using(var tempStream = new MemoryStream(Encoding.UTF8.GetBytes (json))) return (T)ser.ReadObject(tempStream); } Mike Child On Wed, Nov 23, 2011 at 11:16 AM, nodoid

Re: [mono-android] HTTPs problems

2011-11-16 Thread Mike Child
in the version 1.2.2 of MonoDroid(which is the current release version). Being on the 1.9.2 beta version it does work. As far as getting the beta version, I don't know that you can without having a license. Hopefully someone with more knowledge on that could answer for you. Mike Child On Wed,

Re: [mono-android] HTTPs problems

2011-11-16 Thread Mike Child
What version of MonoDroid are you using? That same snippet of code works just fine on my phone. I'm using the beta version 1.9.2 Mike Child On Tue, Nov 15, 2011 at 11:12 PM, Stuart Lodge wrote: > Hi > > I'm finding that I get an exception when I try to download conte

Re: [mono-android] Reinstall and Active

2011-11-10 Thread Mike Child
3 activations are possible. However, you can just log into your account at store.xamarin.com and you can reset/recycle activation's that are no longer being used. Mike Child On Thu, Nov 10, 2011 at 8:38 PM, cb wrote: > Hi I have bought the Mono for Android and activated it on my

Re: [mono-android] HttpURLConnection to local web server from phone

2011-11-09 Thread Mike Child
Are you sure the phone and computer our on the same network and subnet. If they are then check the firewall on you're computer. There should be no problems connecting by using your computers IP address if all those things checkout. On Nov 9, 2011 8:26 PM, "Lomicka" wrote: > Still stuck. Anyone h

Re: [mono-android] Passing information between tabs

2011-11-09 Thread Mike Child
Multiple inheritance is not possible. But looking at the msdn example, it's implementiing INotifyPropertyChanged, which is an interface. You can implement multiple interfaces. Mike Child On Wed, Nov 9, 2011 at 2:53 PM, Paul F. Johnson wrote: > Hi, > > > Thought about hav

Re: [mono-android] REST Example

2011-11-01 Thread Mike Child
You would use DataContractJsonSerializer. It is under the System.Runtime.Serialization.Json namespace. Mike Child On Tue, Nov 1, 2011 at 3:24 AM, moelski wrote: > Hi again, > > I got it working in a .net4 Windows app with this code: > > > But JavaScriptSerializer is

Re: [mono-android] Webservice Deserialization Error

2011-10-20 Thread Mike Child
and then I deserialize the object in MonoDroid. It was always crashing on me until I removed the DateTime object. Haven't found a way around it yet as it wasn't an important field so I haven't looked into it. So like I said, my setup is different but it may be something to test. Mike Child O

Re: [mono-android] Custom IListAdapter works on 1.9.0, fails on 1.9.1

2011-10-17 Thread Mike Child
YourListAdapter : Java.Lang.Object, IListAdapter Hope that helps Mike Child On Mon, Oct 17, 2011 at 1:42 PM, HSSoftware wrote: > In my custom IListAdapter implementation, I had not implemented the Handle > property, as I was unsure what to do. So I just throw a > NotImplementedException.

Re: [mono-android] How to Update Monodroid Visual Studio Plugin

2011-10-17 Thread Mike Child
Just download the latest release and install. On Oct 17, 2011 2:07 AM, "Nirban Dutta" wrote: > Hi, > > ** ** > > We have Enterprise Monodroid. > > ** ** > > Please let me know how to update the Visual Studio Plugin to the latest > release of Monodroid without re-installing it fully(which

Re: [mono-android] debugging in Visual Studio w/ 1.9.1

2011-10-13 Thread Mike Child
I have also noticed the issue when starting the debug, the app deploys, but never starts. Usually I deploy the app first then I hit debug. I have not had the problem since when doing it like that. It seemed to happen the most when I make code changes and hit debug. I don't remember it ever happenin

Re: [mono-android] VS not recognizing Samsung GALAXY Tab

2011-10-13 Thread Mike Child
My Tab also works fine in Windows 7. I did not have download any drivers to get it to work. As someone else said, make you have the Tabs usb debugging turned on. If you can see it in mass storage mode, then usb debugging is probably not on, our not working. One thing I have noticed on my Tab though

Re: [mono-android] Failed to get device space on disk using MonoDevelop

2011-10-06 Thread Mike Child
. Everything works as expected on Windows in Visual Studio. Mike Child On Thu, Oct 6, 2011 at 5:28 PM, Andreia Gaita wrote: > Hi, > > Could you run adb shell and then "df" and send the output of that command > on the Epic 4G, please? > > Thanks > > andreia > &

[mono-android] Failed to get device space on disk using MonoDevelop

2011-10-06 Thread Mike Child
have over 1 GB of internal device storage free. When I'm on my Windows computer and use Visual Studio, the apps run and debug correctly on both devices. Has anybody seen this before or have any things to look for. I have looked in logcat and nothing stands out as being ab

Re: [mono-android] ZXing port to mono for Android

2011-09-27 Thread Mike Child
tartActivityForResult(intent,0); Mike Child On Tue, Sep 27, 2011 at 8:16 AM, Elan Hasson wrote: > That is awesome. > > Thanks for sharing this! > > > On Tue, Sep 27, 2011 at 7:37 AM, efontana wrote: > >> https://github.com/JohnACarruthers/zxing.MonoDroid >> &g

Re: [mono-android] Honeycomb Emulator and "Hello World"

2011-09-21 Thread Mike Child
281. Is there a workaround? Yes: include the armeabi-v7a architecture with your app. Mike Child On Wed, Sep 21, 2011 at 2:13 PM, Dan Ransom wrote: > I'm running a trial of the MonoDroid VS extension and I can't seem to get > the “Hello World” app to run on any Honeycomb emulat

Re: [mono-android] Debugging in VS2010 is unusable!

2011-09-17 Thread Mike Child
That's pretty much the way it is if you are using the emulator. Not really anything you can do about it. The android emulator is notoriously slow and google admits it. It has nothing to do with monodroid. Google is emulating the arm instructions so it is much closer to the the phone architecture wh

Re: [mono-android] MD Error on First Time Install JDK 7

2011-09-17 Thread Mike Child
Android sdk r12 does not require java 7. I don't have java 7 on any of my computers and r1 tr works fine on them all.you need the java 6 jdk On Sep 17, 2011 2:17 PM, "vbisbest" wrote: > Well it appears that you cant install android sdk r12 without JDK 7 (Says you > need to have JDK installed). And

Re: [mono-android] Disk Full error while copying DB to emulator

2011-08-11 Thread Mike Child
Check to see how much space is available on your device. If your app & data is being deployed to your internal memory and not an SD card you may actually be out of space. Mike Child On Thu, Aug 11, 2011 at 11:08 AM, vsr28 wrote: > Hi Guys > > I have created one sample applica

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, "A