Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
0answers
223 views

WebView on Android ICS, iframe problems with android_assets

My application engine runs inside a WebView. It spans different IFRAMES. Both the main application html and the iframes html are on android_assets. On Android 3.x no problems ever. Same on chrome ...
8
votes
3answers
1k views

Android: difference between res and assets directory

i know that files in res directory are accessible from R class while assets behaves like a file system, but i would like to know, in general, when it's best to use one and the other. Can anyone help ...
6
votes
1answer
7k views

Reading file from assets directory throws FileNotFoundException

I'm trying to read in a text file of a bunch of words that I want to use for a word game I am writing. This list is stored in the assets directory and is a txt file. But, whenever I attempt to open ...
4
votes
3answers
242 views

Copy file to assets folder

After searching 1 hour i do not found any solution to my problem. I want to move a file from sdcard to assets folder and also overwrite the existing file in assets folder (both file are sqlite ...
4
votes
3answers
6k views

Problem with loading existing .html file with android WebView

Firstly, happy birthday! I did try samples, demos from Google codes and other resources with WebView, but when i try to do it in my own code, it doesn't work for me. I want to load myfile.html which ...
3
votes
3answers
248 views

Android: Get Number of Files within Zip?

I have a question that seems easy but I cannot seem to get it to work properly. I have a zip file within my 'assets' folder that I need to unzip and I have a ProgessBar in which I want to display to ...
3
votes
2answers
697 views

how to reference an asset in a library project

In a class belonging to a Library project I call: webview.loadUrl("file:///android_asset/info.html", null); Unfortunately, this only works if I duplicate the file info.html into the Application's ...
3
votes
1answer
471 views

Use of file:///android_res/drawable/ url works under eclipse but not in production

I have a problem that is driving me nuts. I have a static html file (assets/help/index.html) that needs to include some images. As I want different images for different densities and the images are ...
2
votes
2answers
427 views

How to access resources (like sound, images etc) directly from native code using Android-NDK?

I want to know that how can I directly access the resources like images, sound files etc. from native code i.e. C++ files. Actually I am looking for any example that could help me to use the ...
2
votes
1answer
765 views

How to access local assets from a remote URL in Android WebView?

To load an asset in HTML, I am using the URL file:///android_asset/my_image.png. It works when I am loading HTML locally, for instance, using a WebView.loadData() method. However, I am unable to load ...
2
votes
1answer
682 views

Webpage not available on Honeycomb webview

We have a webview that we are loading from android_assets. This works fine in 2.1, 2.2, and 2.3. However, when we load it in 3.0, we get get a Webpage not available message. This only happens on ...
2
votes
1answer
296 views

Assets on storage card

I have an application that stores lot of data in the assets folder ( html,audio,video etc ). I use the file:///android_assets to access these files. But due to the apk size limitation of 50 MB imposed ...
2
votes
1answer
728 views

Smaller APK size with large assets?

I am creating a simple android app to view a comic book. The pages are large(0.5-1 mb each), high quality .png's and I am loading them into a webview to make use of the built in zoom controls. So far ...
2
votes
1answer
1k views

Problem while opening Asset File with the help of Content Provider

My requirement is to open one app's Asset file from another app via content provider.(I am exposing that file with ContentProvider implementation) I am able to open few files and read, but while ...
2
votes
1answer
464 views

Data not displayed first time in android after copying the file from assets to data folder

Description I have used the code tip from http://www.reigndesign.com/blog/using-your-own-sqlite-database-in-android-applications/ to copy a pre-filled data file to the target and handled this in a ...
2
votes
5answers
9k views

Android: read a GZIP file in the ASSETS folder

How can you read GZIP file in Android located in the "ASSETS" (or resources/raw) folder? I have tried the following code, but my stream size is always 1. GZIPInputStream fIn = new ...
1
vote
0answers
37 views

Content Provider doesn't fully work on every device

I've implemented the following and it works painless on HTC Desire (Android 2.2). Uri uri = Uri.parse("content://com.package.app.AssetProvider/"+"document.pdf"); Intent intent = new ...
1
vote
1answer
74 views

update embedded sqlite mac address database android on button click

I have an embedded database file(Macs.db in assets directory) of MAC addresses in my application.The database is a very simple sqlite database with just one table. The table named mactoname has two ...
1
vote
2answers
153 views

How to use preloaded SQLite database in Android from Assets

I want to use preloaded database in my app means trying to get database at the time the apk is installed so can use the data already saved in that. I copy the "ingredients.db" file in the assets ...
1
vote
2answers
137 views

Window leaked error

I have a problem I created my progress dialog dialog = new ProgressDialog(InstallerActivity.this); I have 12 apk files in my assets folder. I am trying to copy all 12 assets to sdcard with this ...
1
vote
2answers
204 views

Exception in Drawable.createFromResourceStream() — HTC ONLY?

I've released an IME (soft keyboard) app and I am getting crash reports from HTC phones only. Here is the stack trace: java.lang.NullPointerException at ...
1
vote
0answers
119 views

Get/set data from/to input field in assets HTML file?

A WebView loads HTML page from the /assets dir. When a user enters some data into a text field in that HTML file, can my WebView catch/save that data once a user preses some button or link? Also, ...
1
vote
1answer
326 views

Lazy Loading List - need a little help here

So basically everyone at one point needs to do this,load some images from web or cache to a listview.I find a really good example of Lazy List by Fedor and I'm trying to make it to do what I need,but ...
1
vote
2answers
370 views

android database from the assets folder

Is there a way to directly access the sqlite database from the assets folder, or is it always necessary to first copy this db to the device data directory, in the app's database folder? (Example - ...
1
vote
2answers
366 views

How to copy files from assets on setUp method from an android Junit ServiceTestCase?

I'm writing JUnit test code for an android service implementation, and I have to initialize the tests with some files copied on sdcard. My class signature is like this: public class ...
1
vote
3answers
253 views

NullPointerException trying to access a String resource

I have the following /res/values/uris.xml <?xml version="1.0" encoding="utf-8"?> <resources> <string name="bladder">blahblah</string> </resources> I am accessing it in ...
1
vote
1answer
2k views

binary read android assets

Trying to read a binary data file in the assets directory of android app: void loadFile(InputStream filein){ log(filein.available()); // returns 11310099 int a = filein.read(); // returns -1 ...
0
votes
1answer
24 views

load file from assets without AssetManager

Is there a way to load an android asset without using the AssetManager? I am using a separate java library (compiled into my application) to load some files. It requires a java URL. Is there anyway ...
0
votes
1answer
45 views

Adding Images to a ListView from SQL using Assets Folder for Images

I'm making Android app that has this database in it: public void onCreate(SQLiteDatabase db) { String sql = "CREATE TABLE IF NOT EXISTS snacks (" + "_id INTEGER PRIMARY KEY ...
0
votes
3answers
33 views

Overwriting content of textfile in assets folder in Android project

I have a file named counter.txt in assets folder of my android project, and at runtime i want to overwrite the content of the file. But its not reflecting, plz help me i have used below code. ...
0
votes
1answer
38 views

Custom method to draw drawables from assets folder has heigh cpu usage

I like to use the assets folder instead of the drawable folder (if it's not a nine-patch) because I can use multiple folders there. However the method I use to get an drawable required the cpu to do ...
0
votes
1answer
30 views

How to create the directory and store file in to it from assets folder?

I am using below code to copy the file from assets to the Sdcard. code: File file3 = new File("/sdcard/Alone.mp4"); if(!(file3.exists())) { ArrayList<String> files = new ...
0
votes
1answer
50 views

Does anyone know if in Android there is similar library to Assets Library Framework in iOS?

Did you encounter any kind of solution which would allow me to create a movie from picture frames in Android. This case in iOS is handled by Assets Library Framework, and after my research in Android ...
0
votes
1answer
138 views

Serving a file with Netty - response is truncated by one byte

I've serving a files from Android assets via Netty server (images, html). Text files such a html is saved as .mp3 to disable compression (I need an InputStream!) My pipeline is looking like this: ...
0
votes
0answers
112 views

Reading File (Android + Phonegap)

I'm new to phonegap. I'm using phonegap-1.1.0 + Android2.3 I want to read a text file in assets/www I tried all the examples which is there in the phonegap site. Nothing working for me Can anyone ...
0
votes
1answer
53 views

File creation assets android

I'm buiding an app that what it does is scan the root folder and then it searches if there is any folder inside... the purpose of this is to save all the text files routes in database..the ...
0
votes
1answer
193 views

copy a database file programatically from asset folder of the application

I have searched a lot about this problem.My phone is not rooted. I want to copy a database file programmatically from my asset folder of the application to /system/usr of my Android device. So that i ...
0
votes
2answers
181 views

How to get the android Path string to a file on Assets folder?

I need to know the string path to a file on assets folder, because i'm using a map api that needs to receive a string path, and my maps must be stored on assets folder This is the code i'm trying: ...
0
votes
2answers
43 views

referring to a table of a database file stored inside assets folder (android)

I am new to SQL.I have a database of mac-addresses which i created using Sqliteman browser. It is a simple database with just one table named "access_points". The database named macad.db is in my ...
0
votes
1answer
98 views

openRawResourceFd fails on android

I'm writing my first Android application, and I'm trying to read a res/raw resource file. The following code throws a FileNotFound Exception: AssetFileDescriptor fd = ...
0
votes
1answer
138 views

FileNotFoundException Android

I have this very silly exception coming up and disturbing my mind. I have an xml file in the assets folder which says where to find the content updates for my application. So i used xmlpullparser to ...
0
votes
1answer
70 views

Can anyone access what is inside Assests folder?

I want to develop an application for some company. The application is mainly a search tool in a specific database. I have two ways to develop this application: Include the DB file into the assest ...
0
votes
1answer
60 views

Different assets for different device configs

I'm developing an application which has some assets bundled with it - they are mostly web pages with associated graphics, css etc which I'll display in a custom WebView. I'm trying to work out how to ...
0
votes
1answer
65 views

Android: Access to AssetManager inside a singleton class?

I have a singleton class which manages Data and database handling of my application. I create a sqlite3 database with default values and kept it in asset directory. In one of my API of this class I ...
0
votes
0answers
155 views

How to modify a pre-packaged apk file on client-side by user who is using my desktop application?

Well, I know the title is not well-written, but my case is as complicated as that! I searched for this case here but other similar questions really differ from mine. Here is my problem: I have ...
0
votes
1answer
360 views

Unable to get files in Android assets directory

I am trying to find files located in assets. I have .txt, .gif, and .db files that are there in an eclipse android project but do not display when I run the following code: AssetManager am = ...
0
votes
0answers
127 views

force close and error:No command output when running: 'am start -n com.content.read/com.content.read.ReadAsset -a android.intent.action.MAIN -c

I have a file containing text in separate line.I want to display line first, and then if I press a button, the second line should be displayed in the TextView and the first line should disappear. ...
0
votes
4answers
408 views

How to get file read line by line

I have a file containing text in separate line. I want to display line first, and then if I press a button, the second line should be displayed in the TextView and the first line should disappear. ...
0
votes
2answers
226 views

Loading files within android

Android seems to make life pretty easy for loading resources of certain types. Once I leave the beaten path a little bit, it seems less helpful. I can load in images, sounds and other objects from the ...
0
votes
0answers
188 views

View PDF file from assets folder

I have a PDF file in assets folder. Every time I run my application the PDF file is viewed as in notepad. I can't read the PDF file. Can anyone help me? Here is my code: public class sample extends ...

1 2