-2

I have one html file, I will set the html file in iphone based application by using mgwt .. Please help me to set the html files in phone ...

Thanks in advance..

Suresh
  • 5
  • 4
  • Actually I don't see what you're asking for. What is your code? What's the problem with it? – qben Sep 26 '13 at 14:09
  • I have set of html files and my goal is to get the html files and display in my application by using mgwt . I tried already by using this code Frame f=new Frame(); f.setUrl("files.txt"); this code working fine in ipad but in iphone i didn't see proper view – Suresh Sep 27 '13 at 05:58
  • You could update your question with this code at least. Then you'll have more chance to get the answer. – qben Sep 27 '13 at 07:15

1 Answers1

1

Based on what I was able to grasp from you question you have an HTML file and you want that file to act as an iPhone hybrid app using mGWT. If that's the case, then there is an huge abyss to cover before getting to that point. This is the list of general steps you would need to cover to get all the way there.

  1. Get a grasp of GWT Basics
  2. Configure a simple mGWT application with PhoneGap support.
  3. Understanding the way GWT MVP works will also be very helpful but not required
  4. Once you have that working its time to wrap the web app into a iOS cordova webview with PhoneGap

Please note that you will require an Apple Mac to acomplish the last step. You will also reequire to be registered as an Apple developer if you intent to get your resulting app into a real device. Also you will require a good understanding of Java application development and a good grasp on how Web applications work (HTML, JS and CSS at least).

You have a long way ahead of you.

Chepech
  • 5,258
  • 4
  • 47
  • 70