Re: [mono-android] Generic Binder object from external jar

2013-09-12 Thread venkatesh
Hi, Please refer below link . it may be useful for your issue. http://mono-for-android.1047100.n5.nabble.com/Bound-Services-td4872509.html Thanks -- View this message in context: http://mono-for-android.1047100.n

[mono-android] Activity is restarted when the screen orientation changed

2013-09-19 Thread venkatesh
Hi, I don't want my activity be restarted, when user changes the screen orientation for *API Level 15* and above. I have tried setting ActivityAttribute.ConfigurationChanges in the main activity . But when the screen is oriented, Activity is restarted . [Activity(ConfigurationChanges = Andro

Re: [mono-android] Activity is restarted when the screen orientation changed

2013-09-22 Thread venkatesh
Hi Fabbr, Thanks for your reply. Implementing ConfigurationChanges config in Activityattribute solved the issue for *Android API Level 14 and above.* *[Activity ConfigurationChanges = Android.Content.PM.ConfigChanges.Orientation | Android.Content.PM.ConfigChanges.ScreenSize ]* Thanks --

[mono-android] File Picker navigation to backward

2013-09-23 Thread venkatesh
Hi, I need to extend the navigation capabilities of filepicker to permit an user to walk through the file structure backward. Currently file picker recipe in xamarin is implemented to walk folders and files only forward. Please suggest me on how to do this as i am new to Xamarin android platform

Re: [mono-android] File Picker navigation to backward

2013-09-24 Thread venkatesh
Hi, Please anyone give me a direction to workaround this issue. Thanks -- View this message in context: http://mono-for-android.1047100.n5.nabble.com/File-Picker-navigation-to-backward-tp5713528p5713531.html Sent from the Mono for Android mailing list archive at Nabble.com. _

[mono-android] Binding FileChooser java Library project to xamarin android

2013-09-25 Thread venkatesh
Hi, I am binding filechooser library project to xamarin android . 1) filechooser.jar from eclipse build 2) Created a new Java Bindings Library project 3) Copied the generated filechooser.jar into the Jar directory and set the Build Action to "EmbeddedJar" 4) Copied the referenced android-suppor

Re: [mono-android] Binding FileChooser java Library project to xamarin android

2013-09-26 Thread venkatesh
Hi Jon, Thanks for your prompt reply. I have solved *Error 2 :* * 'Com.Ipaulpro.Afilechooser.FileLoader.LoadInBackground()': return type must be 'Java.Lang.Object' to match overridden member 'Android.Support.V4.Content.AsyncTaskLoader.LoadInBackground()' by adding these lines in Metadata.

Re: [mono-android] File Picker navigation to backward

2013-09-26 Thread venkatesh
Hi, Since i am new to this platform , i couldnot solve this issue. Please give me a way to solve this isssue. -- View this message in context: http://mono-for-android.1047100.n5.nabble.com/File-Picker-navigation-to-backward-tp5713528p5713535.html Sent from the Mono for Android mailing list ar

Re: [mono-android] Binding FileChooser java Library project to xamarin android

2013-09-26 Thread venkatesh
Hi John, Thanks for your wonderful support. I have changed the casting type to (System.Collections.IList) in the new partial class as per your suggestions. namespace Com.Ipaulpro.Afilechooser { partial class FileListFragment { public void OnLoadFinished(Android.Support.V4.Conten

Re: [mono-android] Binding FileChooser java Library project to xamarin android

2013-09-30 Thread venkatesh
Hi Jon, Could you please guide me to solve this issue. Thanks Venkatesh.R -- View this message in context: http://mono-for-android.1047100.n5.nabble.com/Binding-FileChooser-java-Library-project-to-xamarin-android-tp5713532p5713544.html Sent from the Mono for Android mailing list archive at N

Re: [mono-android] Binding FileChooser java Library project to xamarin android

2013-10-01 Thread venkatesh
Hi Jon, Thanks for your wonderful support. I will check and update you. Thanks Venkatesh.R -- View this message in context: http://mono-for-android.1047100.n5.nabble.com/Binding-FileChooser-java-Library-project-to-xamarin-android-tp5713532p5713555.html Sent from the Mono for Android mailing

Re: [mono-android] Binding FileChooser java Library project to xamarin android

2013-10-01 Thread venkatesh
Hi Jon, Thanks for your wonderful support. I will check and update you. Thanks Venkatesh.R -- View this message in context: http://mono-for-android.1047100.n5.nabble.com/Binding-FileChooser-java-Library-project-to-xamarin-android-tp5713532p5713556.html Sent from the Mono for Android mailing

[mono-android] WSHLST app Error in Android

2013-10-03 Thread venkatesh
Hi All, I have downloaded WSHLST from GitHub and followed the project setup in Azure mobile services. It's worked with Windows Phone, but when i build against Android throws the below error page. Note: The errors are something related to 'Android.Content.Cont

Re: [mono-android] Binding FileChooser java Library project to xamarin android

2013-10-04 Thread venkatesh
Hi Jon, Thanks for your wonderful support. filechooser binding project works very well in android application. Thanks, Venkatesh.R -- View this message in context: http://mono-for-android.1047100.n5.nabble.com/Binding-FileChooser-java-Library-project-to-xamarin-android-tp5713532p5713560.htm

[mono-android] PulltoRefresh with load more java library project binding

2013-12-02 Thread venkatesh
Hi, I am trying to make a jar bindings project that I use in my application. For this 1. I created a jar binding project. 2. Added the .jar file in the Jars folder. 3. Made it an EmbeddedJar 4. Build the project 5. Create the android application project which reference the above created dl

[mono-android] Java Interface type to c# binding

2013-12-04 Thread venkatesh
Hi, We have implemented the Pull to refresh and load more android library project into xamarin application. In android java project , we have an OnRefreshListener interface. /** * Register a callback to be invoked when this list should be refreshed. * * @param onRefre

Re: [mono-android] Java Interface type to c# binding

2013-12-04 Thread venkatesh
Hi, kindly give me some valuable suggestions on this issue. //Java Class on List View // Set a listener to be invoked when the list should be refreshed. ((PullAndLoadListView) getListView()) .setOnRefreshListener(new OnRefreshListener(){} ) //C#

[mono-android] binding android library porject to xamarin android

2013-12-05 Thread venkatesh
Hi, We have implemented the Pull to refresh and load more android library project into xamarin application. For this , we have created xamarin android binding project using binding mechanism. Issue: the below method in android library project is not added in xamarin binding project. /**

Re: [mono-android] Java Interface type to c# binding

2013-12-06 Thread venkatesh
Hi, Thanks for your prompt reply. As you said , i have attached Diagnostic build output for binding project. Diagnostic build output : DiagonosticBuild.txt Kindly give me the valuable suggestion to solve the

Re: [mono-android] Java Interface type to c# binding

2013-12-17 Thread venkatesh
Hi, Sorry for late mailing . Thanks for your wonderful support. It's working now. Thanks -- View this message in context: http://mono-for-android.1047100.n5.nabble.com/Java-Interface-type-to-c-binding-tp5713630p5713643.html Sent from the Mono for Android mailing list archive at Nabble.com. _

Re: [mono-android] Deserializing Json String to List Collection shows Null value

2014-01-09 Thread venkatesh
results = JsonConvert.DeserializeObject(s); The above code results retun Null. Kindly suggest me to resolve the issue. Thanks Venkatesh -- View this message in context: http://mono-for-android.1047100.n5.nabble.com/RE-Deserializing-Json-String-to-List-Collection-shows-Null-value-tp5713653

[mono-android] Xamarin Android Release Build Error

2014-04-07 Thread venkatesh
Hi , we are developing an business application using Xamarin Android. We have used user assemblies (j*ava binding library for Pull to Refresh component*) and *Newtonsoft.Json * from Nuget Packages . These assemblies are referenced in our android project. It is working fine with Debug mode, when

Re: [mono-android] Xamarin Android Release Build Error

2014-04-09 Thread venkatesh
Hi, Kindly suggest on this issue as we are struggling this issue past two days for release build. Thanks Venkatesh.R -- View this message in context: http://mono-for-android.1047100.n5.nabble.com/Xamarin-Android-Release-Build-Error-tp5713691p5713692.html Sent from the Mono for Android maili

Re: [mono-android] Xamarin Android Release Build Error

2014-04-10 Thread venkatesh
Hi, Could you please guide me on how to solve the above issue. Thanks Venkatesh.R -- View this message in context: http://mono-for-android.1047100.n5.nabble.com/Xamarin-Android-Release-Build-Error-tp5713691p5713694.html Sent from the Mono for Android mailing list archive at Nabble.com. ___

Re: [mono-android] Xamarin Android Release Build Error

2014-04-15 Thread venkatesh
Hi, No one facing this kind of issue in Release build. -- View this message in context: http://mono-for-android.1047100.n5.nabble.com/Xamarin-Android-Release-Build-Error-tp5713691p5713695.html Sent from the Mono for Android mailing list archive at Nabble.com. _

Re: [mono-android] Xamarin Android Release Build Error

2014-04-16 Thread venkatesh
Hi, > in release by default x86 is removed, did you try to add x86 architecture to release build? Yes. I have tried to set both armeabi-v7 and x86 architecture with sdk and user assemblies . But it gives same error saying that error * "XA4210: You need to add a reference to Mono.Android.Export

Re: [mono-android] Xamarin Android Release Build Error

2014-04-17 Thread venkatesh
Hi Jon, Thanks for your prompt reply. Setting to "Link SDK Assemblies Only" solved the above issue. Thanks, Venkatesh.R -- View this message in context: http://mono-for-android.1047100.n5.nabble.com/Xamarin-Android-Release-Build-Error-tp5713691p5713699.html Sent from the Mono for Androi

[mono-android] Invalid Byte Array Conversion in WCF Rest Service for Jpeg Image for Signature Pad

2014-06-11 Thread venkatesh
Hi all, We are trying to implement the signature capture in Xamarin Android by using the Xamarin Signature capture component. We need to save the signature image in database by using WCF REST Service(POST Method). We have converted image(JPEG) into Byte array and sent the same as stream to WCF R

[mono-android] Using Autocomplete, Spinner and Pullto refresh component in Xamarin.Forms

2014-06-19 Thread venkatesh
Hi, I am new to Xamarin.forms. Are there any possible of using Autocomplete, Spinner and PulltoRefresh component in Xamrin.Forms so that we can use it in cross platforms.It seems to be not available of the specified components as of now.We need to use the above componets in Xamarin.Forms AS Shared

Re: [mono-android] Using Autocomplete, Spinner and Pullto refresh component in Xamarin.Forms

2014-06-22 Thread venkatesh
Hi All, Kindly suggest on the above issue. Thanks -- View this message in context: http://mono-for-android.1047100.n5.nabble.com/Using-Autocomplete-Spinner-and-Pullto-refresh-component-in-Xamarin-Forms-tp5713722p5713724.html Sent from the Mono for Android mailing list archive at Nabble.com.

Re: [mono-android] Can we use Android-x86 emulator?

2011-09-07 Thread Ram Venkatesh
from my phone Miljenko Cvjetko wrote: >Howdy > >On 2011.09.07 14:40, Jonathan Pryor wrote: >> On Sep 7, 2011, at 8:36 AM, efontana wrote: >>> This thing rocks, can we use it with Mono for Android? >> No. Mono for Android provides (and depends on) native shared libraries, and >> we are currentl

Re: [mono-android] Can we use Android-x86 emulator?

2011-09-07 Thread Ram Venkatesh
from my phone Miljenko Cvjetko wrote: >Howdy > >On 2011.09.07 14:40, Jonathan Pryor wrote: >> On Sep 7, 2011, at 8:36 AM, efontana wrote: >>> This thing rocks, can we use it with Mono for Android? >> No. Mono for Android provides (and depends on) native shared libraries, and >> we are currentl

Re: [mono-android] Can we use Android-x86 emulator?

2011-09-07 Thread Ram Venkatesh
from my phone Miljenko Cvjetko wrote: >Howdy > >On 2011.09.07 14:40, Jonathan Pryor wrote: >> On Sep 7, 2011, at 8:36 AM, efontana wrote: >>> This thing rocks, can we use it with Mono for Android? >> No. Mono for Android provides (and depends on) native shared libraries, and >> we are currentl

Re: [mono-android] Can we use Android-x86 emulator?

2011-09-07 Thread Ram Venkatesh
from my phone Miljenko Cvjetko wrote: >Howdy > >On 2011.09.07 14:40, Jonathan Pryor wrote: >> On Sep 7, 2011, at 8:36 AM, efontana wrote: >>> This thing rocks, can we use it with Mono for Android? >> No. Mono for Android provides (and depends on) native shared libraries, and >> we are currentl

Re: [mono-android] Can we use Android-x86 emulator?

2011-09-07 Thread Ram Venkatesh
from my phone Miljenko Cvjetko wrote: >Howdy > >On 2011.09.07 14:40, Jonathan Pryor wrote: >> On Sep 7, 2011, at 8:36 AM, efontana wrote: >>> This thing rocks, can we use it with Mono for Android? >> No. Mono for Android provides (and depends on) native shared libraries, and >> we are currentl

Re: [mono-android] Can we use Android-x86 emulator?

2011-09-07 Thread Ram Venkatesh
from my phone Miljenko Cvjetko wrote: >Howdy > >On 2011.09.07 14:40, Jonathan Pryor wrote: >> On Sep 7, 2011, at 8:36 AM, efontana wrote: >>> This thing rocks, can we use it with Mono for Android? >> No. Mono for Android provides (and depends on) native shared libraries, and >> we are currentl

Re: [mono-android] Can we use Android-x86 emulator?

2011-09-07 Thread Ram Venkatesh
from my phone Miljenko Cvjetko wrote: >Howdy > >On 2011.09.07 14:40, Jonathan Pryor wrote: >> On Sep 7, 2011, at 8:36 AM, efontana wrote: >>> This thing rocks, can we use it with Mono for Android? >> No. Mono for Android provides (and depends on) native shared libraries, and >> we are currentl

[mono-android] NoSuchMethodError from NfcAdapter.EnableForegroundDispatch

2011-10-09 Thread Ram Venkatesh
ive Method) } Java.Lang.NoSuchMethodError Can someone shed some light on the error and any potential workarounds? Thanks! Venkatesh ___ Monodroid mailing list Monodroid@lists.ximian.com UNSUBSCRIBE INFORMATION: http://lists.ximian.com/mailma

[mono-android] VS crash when offline

2011-10-12 Thread Ram Venkatesh
oke() at System.Threading.Tasks.Task.Execute() Is this a known issue, if so please share workarounds if any. Thanks! Venkatesh ___ Monodroid mailing list Monodroid@lists.ximian.com UNSUBSCRIBE INFORMATION: http://lists.ximian.com/mailman/listinfo/monodroid