Tuấn Anh Nguyễn
Tuấn Anh Nguyễn

Reputation: 45

is possible to convert any code in native android to xamarin.android?

I was a Android developer and now I am studying Xamarin , but I always ask myself "can I convert all android(ios) code to xamarin.android or xamarin.ios ?" because I know c# is similar to java . However , they still have a few different syntax . Can someone help me answer this question ?

Upvotes: 3

Views: 4859

Answers (1)

Kiliman
Kiliman

Reputation: 20312

Xamarin allows you to write Android apps in C#. It also allows you to use existing Java code in your solution. This is done by creating bindings, which is the bridge between managed code and the Android runtime.

For more information see:

http://developer.xamarin.com/guides/android/advanced_topics/java_integration_overview/binding_a_java_library_%28.jar%29/

Upvotes: 3

Related Questions