Posts by Ronison Rodrigues • 91 points
6 posts
-
3
votes2
answers83
viewsA: @media screen not working properly
You didn’t set the width, you set the height, notice: min-height: 480px replace with: min-width: 480px that will spin perfectly. @media screen and (min-width: 480px){ .logo { width: 214px;…
-
2
votes2
answers756
viewsA: Display player in Android notifications area
You can use the Cordova Music Controls Plugin cordova plugin add https://github.com/homerours/cordova-music-controls-plugin It’s very easy to integrate it with your app.…
-
0
votes1
answer89
viewsA: Phonegap Plugin
If you’re gonna use the PhoneGap Build no need to install the plugin via console, only on config.xml For you to install a plugin via git just do it like this: <plugin…
-
-1
votes1
answer383
viewsA: Request problem - Phonegap + Ajax
You put the permission for the application to use internet ? If you have not put android does not let the application use internet resources, so your code will not communicate with the server. And…
-
1
votes1
answer709
viewsA: How to change the language of the content of an application with Cordova from Portuguese to English?
You can identify the user language of your application using the Plugin Globalization https://github.com/apache/cordova-plugin-globalization After identifying the language that is on your user’s…
-
0
votes1
answer258
viewsA: $. ajax locking the server
What kind of server are you using ? shared hosting, VPS, dedicated server ? It may happen that the server interprets all these requests as a Ddos attack, so to prevent it does not allow access, but…