Android - PhoneGap Controls

I am new to Android and PhoneGap, and I need to write an application for iPhone and Android.

I'm currently stuck in creating my own menu for Android using PhoneGap. I have my own tab bar menu that works on iOS using PhoneGap.

Question 1) Where can I find some examples or plugins that use their own tab bar menu for android?

Question 2) Discussion of menu creation using HTML5 / CSS / jQuery. What are the pros and cons of using PhoneGap's own controls against pasting to HTML5?

+4
source share
1 answer

You should not use the tab menu in an Android project. Instead, you should use the context menu. In fact, for all the needs of your menu, you should try the new Michael plugin, where you use the menu tag, and it creates the right menu depending on your OS.

https://github.com/mwbrooks/cordova-plugin-menu

+2
source

Source: https://habr.com/ru/post/1414755/


All Articles