[android-developers] Re: How do I intergrate a html document into the code

2010-09-20 Thread Raziel23x
Is there any type of app that can convert the html doc to the needed
java based gui since the html holds the main gui

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: How do I intergrate a html document into the code

2010-09-20 Thread String
On Sep 20, 7:29 am, Raziel23x raziel...@gmail.com wrote:

 Is there any type of app that can convert the html doc to the needed
 java based gui since the html holds the main gui

Nothing is going to convert the HTML to Java, but you can build a
fairly respectable app purely in HTML+scripting in a WebView. In your
situation, your best bet is probably to use a framework which
specializes in this, such as PhoneGap or Appcelerator.

String

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: How do I intergrate a html document into the code

2010-09-20 Thread Raziel23x
I was just curious because I am a part of a group of python scritp
programers who is working on a tool called wyre bash which is a tool
for the game call the elder scrolls iv oblivion which the tool is made
to manage users plugins for mods as well as other tools to help
intergrate all player made mods to the users game with the least
amount of conflicts with the mods in game. As we add new features and
fix bugs we document them in the html document and I was thinking
along the lines of making this guide portable but I also wanted it to
be optomised to fully function with the android os. There will be
other features I will be adding to this app once I get this aspect
working. So is there any tips to pull this off and still use the
website to update the html document and upload new images as well as
update the images once the app is installed on the phone without
having to use a ftp like perhaps it scans the html document and
download the needed files to its data file which the document is
stored in which I want this to be a menu feature but I have not looked
at creating menus yet.

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: How do I intergrate a html document into the code

2010-09-19 Thread Maps.Huge.Info (Maps API Guru)
Put it into the assets folder for your application and load it by
using:

mywebview.loadUrl(file:///android_asset/index.html);

-John Coryat

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en