Reputation: 20916
I am searching for more then 2 days and now I decided to ask here.
Is it possible to convert Android axml
(the same as xml) template to Xamarin.Form
's xaml template.
I am not good with template. That way I need some transformer tool but I can not find it. Or a good docs how to do it or what to change.
Is this even possible?
Upvotes: 3
Views: 3309
Reputation: 4995
Even if you could find such tool, I'd advise you not to use it because there is no direct translation between what Android can do and what Xamarin.Forms can. Since Forms is meant to run on multiple platforms, it has a much smaller scope and hence not all Android Views have a Forms counterpart.
If your template is simple, translating it by hand wouldn't be hard. If your template is complex, a tool wouldn't translate it efficiently
Upvotes: 6