Create App by manipulating external site

0

I want to create an app for a site that has no mobile version, so I need to show the user only 04 fields on the screen (login, password, sign up and ok). How can I do this?

The site is not mine and I do not have access to the source code.

The first image is the original site and the second is how I want it to appear on the Android App?

How do I do this in Java or HTML (html, javascript, jquery, ajax)?

I have already used WebView, but I could not make these changes in the layout, the most I could do was to put a Zoom, it was horrible, because the user needs to be moving around the screen to enter the login and password data.

Where do I start? What techniques to use to do this that I need.

    
asked by anonymous 26.09.2015 / 15:21

2 answers

0

Do you want to create a website or apk-type app? If it's a site that looks for responsiveness, use percentage measures (%) in css instead of pixels (px). Link: link . If you want to create an apk, for android for example, try using PhoneGap. Link: link

    
26.09.2015 / 15:47
0

The best way for you to do this is to use some library that simulates clicks on HTML components from java. One of the ones I know is HtmlUnit . That way, you can do the layout the way you want it on android, and when the user interacts with your buttons in the layout, for example, you simulate clicks on the html components (buttons, in case) of the site you want. >     

26.09.2015 / 19:36