Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google Polymer for Android native app

Google Polymer looks like a simple way to make material designed web pages. I am developing a native Android application and would like to make it material designed. My question is, can I use Polymer for native Android applications?

like image 426
Shubham Khandalkar Avatar asked Apr 25 '15 04:04

Shubham Khandalkar


3 Answers

Yes, you can make native mobile apps with Polymer, thanks to Polymer Native.

like image 63
niutech Avatar answered Oct 27 '22 13:10

niutech


No, you cannot use Polymer to build a truly "native" Android app. Although there are frameworks such as Phonegap which would allow you to build an app using web technologies and then compile into an Android app.

If your goal is to make an app that follows material design patterns, I suggest you get started by reading the official documentation on the subject: Creating Apps with Material Design

like image 7
metaColin Avatar answered Oct 27 '22 13:10

metaColin


Polymer is a JavaScript Framework that implements web-specific standards for the front-end.

And JavaScript is not the native language of Android so Polymer cannot be used to build Native Apps (using Java) using Meterial Design.

But on the other hand you can build entire applications using HTML5 with the help of some technologies like Cordova and PhoneGap.

like image 3
Adi Avatar answered Oct 27 '22 12:10

Adi