Android :: Way To Display Local File In WebView?

Feb 28, 2009

I thought it might be interesting to some developers. Here's a complete working example of ContentProvider for this purpose: http://blog.tourizo.com/2009/02/how-to-display-local-file-in-android. I also found a topic here: http://groups.google.com/group/android-developers/browse_thread/threa. Looks like the topic was closed and I couldn't reply there, so I created new one.

Android :: Way to display local file in WebView?


Android :: Way To Display A Pic To Local Html In Webview?

Apr 15, 2010

I am developing a small application in Android. I come across a problem, and not sure whether it is possible in Android platform. I have some local html files. There is an Activity contains a webview, which is used to display these local html files. In some cases, I want to display a picture selected from phone into one of these local html files. Is it possible? Has anyone resolved such problem? I appreciate any of your replies.

View 2 Replies View Related

Android :: How To Use Webview.loadUrl / When Html File Is Local?

Nov 2, 2010

How do I open a a local html-page (named, for instance "test.html") in a WebView? where should i keep this keep html page with images in project and how to use Webview.loadUrl(String url)?

View 4 Replies View Related

Android :: Loading External Data On Local File In WebView

May 27, 2009

when I load external web page, image or javascript file from local webpage. I can't see external image and can't load javascript or webpage. But I can only see local image. Why I can't load external javascript, webpage or image? Here is the HTML source. (of course, I filled right [daum open API key])

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http:// www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <meta
http-equiv ="Content-Type" content="text/html;
charset=UTF-8"> <title>Daum 지도 API</title>
<script type="text/javascript"
src="http://apis.daum.net/maps/maps.js?
apikey=[daum open API key]" charset="utf-8"></script> </head> <body>
<div id="map" style="width:600px;
height:400px;
" style="border:1px solid #000">
</div> <img src="http://4.bp.blogspot.com/_2-7AdSkZA7I/RlCnDhD3ZfI/ AAAAAAAAE9U/LEHMtyVLdY8/s400/CutyTale10.jpg">
<img src="file:///android_asset/coffeebean.jpg">
<script type="text/javascript">
var map = new DMap("map", {point:new DLatLng(37.48879895934866, 127.03130020103005), level:2} );
</script> <iframe src="http://www.daum.com" width="300" height="150"></iframe> </body> </html>

and I use this Activity source
package bo.my.android.test;
import android.app.Activity;
import android.os.Bundle; import android.webkit.WebView;
public class OpenAPITest extends Activity {
WebView webView;
/** Called when the activity is first created. */
@Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState);
setContentView(R.layout.main);
webView = (WebView) findViewById(R.id.webView1);
webView.setWebViewClient(new DaumMapClient());
webView.getSettings().setJavaScriptEnabled(true);
webView.loadUrl("file:///android_asset/daummap.html");
//webView.loadUrl("http://www.daum.net");
} }

View 3 Replies View Related

Play Local Swf-file (flash) With Webview?

Sep 9, 2010

I guess webview is the best solution to play a local swf-file (flash). I just get cryptic character in the emulator with this html code in webview.

HTML Code:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Flash</title>
</head>

[URL]

How can i play a local swf-file when the user click on some kind of link, java or html?

View 10 Replies View Related

General :: Playing Local Audio File In Webview App

Feb 3, 2012

When trying to play a local mp3 file included in the APK, nothing happens. However, if I pull an mp3 from the web it works.

e.g.

< a u d i o src="[URL]..." > WORKS

< a u d i o src="01.mp3" > DOES NOT WORK

I tried looking through logs for clues and found this line. I'm not sure if it's relevant or not.

PlayerDriver::isProtectedFile(file:///android_asset/www/01.mp3)

I'm new to Android development, so I can only guess that the file is somehow inaccessible for streaming.

I'd love to get this figured out though. Having to pull the files remotely every time is not a desirable solution.

Some additional info. Either solution works when tested in the browser. The local file problem only arises when I convert it to an app. I'm using PhoneGap build to create the APK.

View 3 Replies View Related

Android :: Display Pdf File Using Webview?

Sep 16, 2010

I can able to display pdf file (download to the device and using package manager dispaly it).

The above things are working fine if the url ends with .pdf extension. But it is not working if the pdf url ends with doc+2+pdf.

How to display pdf file (pdf url ends wih doc+2+pdf)

View 3 Replies View Related

Android :: How To Display Some Part Of HTML File In WebView?

Apr 21, 2010

We have a large HTML which contents 1000's of lines. But we want to show content of the HTML file that fits a single screen. We want provide a '>' kind of to show the next contents of the same HTML file. Our objective is to only display the HTML contents that fits the screen.Similar to reader application For user, it seems there are several pages. Is there any way in which we can achieve this functionality. Whether WebView has any function related to full fill the requirement.

View 2 Replies View Related

Android :: How To Display Small Portion Of HTML File In WebView?

Apr 20, 2010

We have a large HTML which contents 1000's of lines. But we want to show content of the HTML file that fits a single screen. We want provide a '>' kind of to show the next contents of the same HTML file. Our objective is to only display the HTML contents that fits the screen.Similar to reader application For user, it seems there are several pages.

View 4 Replies View Related

Android :: How To Run Local Web App In Phone Webview?

Aug 5, 2010

Can anybody tell how to run the local webapplication using android webview. I want to run my own webpages in android using web view.

View 2 Replies View Related

Android :: How To Mix External / Local Content In WebView?

Oct 12, 2009

I am trying to create a hybrid Android app which pulls HTML content from a web server and renders it in a WebView. However, I also want the external HTML to be able to reference images that are packaged within the android app. I realize that currently it is not possible to do something like <img src="file:///my_image.jpg" /> in the HTML. I have seen discussions of using the ContentProvider to create name spaces in the html, however all of these examples seem to assume that the actual html page is also on the device and tend to use WebView.loadData(). So, is there someway that it is possible to do this? The main goal is to package all the application images/css in the android app, but put the bulk of the application on an external server that returns the actual markup.

View 2 Replies View Related

Android :: WebView Unable To Open Some Local Urls?

Nov 10, 2009

I have a WebView that I'm using to open some files stored in the assets/ directory of my project. It works fine for most of the files, but there's one in particular (and I'm sure others I haven't found) that it just will not open.Code...

View 4 Replies View Related

Android :: WebView For Form Based Local AJAX Application

Feb 18, 2009

I'm thinking of using WebView as a container for "Form" based JavaScript+DHTML applications. This is simple fill-out-forms like you have on the web, but now on mobile like for note taking, order taking, and the like.This is to allow web developers to build the bulk of the application - Javascript will perform validation, computations, etc.On the Java side, I only need to implement database CRUD operations, and a ListView to scroll over the forms.To minimize the learning curve on the JavaScript side, I've been thinking on how to emulate AJAX calls so that the web developers don't need to learn new methods to call on the JavaScript-Java bridge. Of course this isn't possible using XMLHttpRequest, so I'm thinking of adapting JQuery or other Javascript libraries for this purpose.

View 3 Replies View Related

Android :: Playng Video File Present In Local File Syste

Sep 6, 2010

How to play video present in local file system (ex:in res/a.3gp) using VideoView .I am getting error as Video cant be played.Can any one help me in sorting out this issue?

View 2 Replies View Related

Android :: WebView Does Not Display Normally?

Jan 10, 2010

I'm trying without success to shape a simple screen composed of a webview and a closebutton on the bottom. When i run it i see the button close at bottom but when the loadURL of the webview is done the webview takes all the screen size and hide the close button.

View 7 Replies View Related

Android : Where To Put Local File On Phone?

Jul 1, 2009

I'm trying to read some local files, and ive been reading a lot of stuff about it, but i still don't know where to store the files on my phone and how to get the right path. Some say, it should be stored on /data/data/your.package.here/files but where is that, i mean i can get there when using the emulator but i have no clue how to put files in this on a real device.

View 7 Replies View Related

Android : Can SAX Use A Local Resource XML File?

Jul 26, 2010

All of the android examples for XmlPullParser pull from a local resource file, and all of the SAX examples pull the XML from a URL. I've been told SAX is faster, so I'm trying to use that to pull data from a local resource file (res/xml/thefile.xml)

The example code I'm working off of is here. So in that example, the code I want to change is:

URL url = new URL("http://example.com/example.xml");
...
xr.parse(new InputSource(url.openStream()));

Instead of using URL, I want to use getXml(R.xml.thefile)
Is that possible, or does SAX need to get data from a URL?

View 1 Replies View Related

Android : Way To Get Local File Bytes?

Nov 27, 2009

I'm trying to get a byte array of an image saved locally on the phone. I'm using the code...

How can I get the Bytes?

View 1 Replies View Related

Local XML File As Database For Android App?

May 30, 2012

Using Local XML file as a database for a android app?

I am trying to build a app with flash using a xml file as database, to read the xml from a external file from the local directory isn't a problem, the problem is how to write data from flash to the xml file.

View 1 Replies View Related

Android :: Display Pdf Contents On Webview

Apr 16, 2010

I want to display pdf contents on webview.

Here is my code:

CODE:....................

I am getting a blank screen. I have set internet permission also.

View 2 Replies View Related

Android :: Open A Local App File In Another App Via An Intent

Nov 8, 2010

I don't want to store said file on the sdcard in this case. The file also cannot be storage directly in the apps local files directory. It needs to be in a subdirectory, so it cannot write the file using openFileOutput() and MODE_WORLD_READABLE.

The app may download files small files like pdfs and store them locally in a subdirectory. I would like to be able to have the user open these files if they have an app that can open them.

For example here is an intent for sending a pdf:

CODE:..............

path being something like: /data/data/packagename/files/subdir/example.pdf

That intent will open a pdf viewer, but the viewer is unable to open the file. I assume this is a permissions issue. I tried Mark Murphy's suggestion here: http://groups.google.com/group/android-developers/browse_thread/thread/4e55d869213483a9/b7270078ac1a2744?lnk=raot of using Runtime.getRuntime().exec("chmod 755 " + fileName); but it didn't make any difference. He also suggested a Content Provider but I would like to avoid it if I can because it seems like a lot just to get this file over to another app.

If the content provider is the only option, do I have to save the file to the content provider or can I just use the content provider as a pass through to get it to the other app when I need to?

View 2 Replies View Related

Android : Load A Local KML / KMZ File To A MapView?

Jan 13, 2010

How can i load a local (on my HD) KML or KMZ file to the android application? I know that these lines do the work:

Intent mapIntent = new Intent(Intent.ACTION_VIEW); Uri uri1 = Uri.parse("geo:0,0?q=http://code.google.com/apis/kml/ documentation/KML_Samples.kml"); mapIntent.setData(uri1); startActivity(Intent.createChooser(mapIntent, "Sample"));

BUT, if I download the KML_Samples.kml and put it on my local apache server, it doesn't work. Another thing, can I load a kmz file to my application?

View 4 Replies View Related

Android : Parse Local Xml File Using Sax In Droid?

Apr 28, 2010

Can anyone tell me how to parse a local xml file stored in the system using SAX ,with an example code.please also tell me where can i find information on that

View 2 Replies View Related

Android :: How To Display An Image From SD Card In WebView

Jul 13, 2010

When I started to display an image from the SDCARD in WebView, I got errors like:
" Not allowed to load local resource: file://".
I�ve found a solution for this, and you don�t even have to care about ContentProviders�
Here�s an example:
/* Using WebView to display the full-screen image */
WebView full = (WebView)findViewById(R.id.webview);
/* Set up the Zoom controls */
FrameLayout mContentView = (FrameLayout) get Window().
getDecorView().findViewById(android.R.id.content);
final View zoom = this.full.getZoomControls();
mContentView.addView(zoom, ZOOM_PARAMS);
zoom.setVisibility(View.VISIBLE);
/* Create a new Html that contains the full-screen image */
String html = new String();
html = ("<html><center><img src=""+fileName+""></html>" );
/* Finally, display the content using WebView */
full.loadDataWithBaseURL("file:///sdcard/data/data/com.youproject.example "utf-8",
""); Hope you found it useful, let me know how it works for you!

View 1 Replies View Related

Android :: WebView Content To Fit Display Screen

Oct 5, 2010

I tried WebView.getSettings().setLayoutAlgorithm(LayoutAlgorithm.SINGLE_COLUMN); but view crashed in 1.6 OS. I calculate scale(webview.capturePicture()) but I cannot set it after page loaded. Is it any working solution for fitting webview content to display (1.6 OS)?

View 2 Replies View Related

Android :: Way To Display HTML Markup In WebView?

Sep 13, 2010

I'm receiving XML which contains elements of HTML and I want to display these to the users. Therefore, I have to set the content programmatically, rather than extract the strings from an android xml resource. I'm using a WebView to display the content, rather than TextView, as it handles some of the HTML markup - bold text for example, and links. However WebView does appear to be rather limited.

View 8 Replies View Related

Android :: Layout - Webview To Display As A Dialog

Nov 5, 2009

I have a webview I'd like to display as a dialog. I'd like the webview to fill the entire screen, except for a button below it that I'd like to stay at the bottom of the dialog regardless of how much content is in the webview. Currently my webview fills up the dialog just enough to push the button off the screen. I'm sure this is something pretty easy but for the life of me, I haven't been able to find the magical combination of layouts, views and attribute values to get it to play nice. Just to be clear, I've gotten it so the button floats over the webview but I'd like the webview to stop just above the button and scroll, if that makes sense.

CODE:..............................

View 2 Replies View Related

Android :: Loading HTML File From Local RES Directory

Sep 29, 2010

This should be very simple, but I can't find the answer anywhere. How do I load an html file (which I assume I keep in res/raw folder) into a webview?
neither mWebView.loadUrl("file:///raw/about");
or
mWebView.loadUrl("file:///raw/about.htmal");
works.
What's the correct syntax or arrangement.

View 3 Replies View Related

Android :: How To Load Local Asset Html File?

Nov 12, 2009

I am having File which contains Hebrew Content.. How to load that file.. I tried by using
webview .loadUrl("file:///android_asset/abc.htm") but it won't works.. Some garbage content was there.

View 2 Replies View Related

Android :: Getting Google Maps To Accept Local KML File?

Mar 5, 2010

I am trying to get googlemaps to accept a local KML file.
final Intent myIntent = new Intent(android.content.Intent.ACTION_VIEW,
Uri.parse("geo:0,0?q=file://" + Environment.getExternalStorageDirectory() + "/locate.kml"));
startActivity(myIntent);

The file is on the SD card, and is a valid KML file. Google Maps loads up, but says it cannot find the file.
final Intent myIntent = new Intent(android.content.Intent.ACTION_VIEW,
Uri.parse("geo:0,0?q=http://www.website.com/locate.kml"));
startActivity(myIntent);

Works fine. geo: 0,0? q= seems to be very under documented, how to use it to refer to a local file?

View 2 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved