The asset tag has no wiki summary.
22
votes
4answers
31k views
How to get URI from an asset File?
I have been trying to get the URI path for an asset file.
uri = Uri.fromFile(new File("//assets/mydemo.txt"));
When I check if the file exists I see that file doesn't exist
File f = new ...
13
votes
6answers
36k views
Android path to asset txt file
I'm doing:
FileReader fin = new FileReader("file:///android_asset/myFile.txt");
in an Android project and many variations. At runtime I get a file not found exception. The file is present and ...
5
votes
4answers
8k views
How to open a pdf stored either in res/raw or assets folder?
I'm going to show a pdf in my application, and the pdf has to be bundled with the application.
What is a good way to do this?
I have read that it might be possible to do this by adding the pdf file ...
2
votes
1answer
1k views
Sqlite database not copied from asset folder Android
I am trying to copy a database named "adinpect" from the asset folder to the application databases folder, but it is not working...
Code (in main activity onCreate(), just for testing):
try {
...
10
votes
3answers
9k views
How to make an iOS asset bundle?
I saw a custom asset bundle in an iOS project I evaluated, so at least I know it's possible.
My issue is that I'm using a CATiledLayer with about 22,000 tiles for a given image and it takes a very ...
4
votes
2answers
10k views
Load an image to UIImage from a file path to the asset library
Related to my previous question here.
I have a path to an image in the asset library , for example:
assets-library://asset/asset.JPG?id=1000000001&ext=JPG
Now, how could I load the image from ...
1
vote
1answer
1k views
how to export video asset via AVAssetExportSession in portrait mode
when i export a video asset via AVAssetExportSession the result file is in landspace mode.
(file grabbed via itune->apps->file sharing->my app).
how can i export the video asset in portrait mode ...
7
votes
2answers
9k views
Android: How to find the absolute path of the assets folder?
I need to get the absolute path of the assets folder in my app as I want to serve the files within using a webserver and it needs the absolute path. Is this possible?
I would have thought there might ...
0
votes
2answers
3k views
Problems loading html asset into webview
I am having difficulty in loading a html file from my project assets folder into a webview. I have looked at dozens of tutorials and solutions but none seem to work for me.
In my project's assets ...
3
votes
2answers
2k views
cell imageView in UITableView doesn't appear until selected
Here is a video of the problem: http://youtu.be/Jid0PO2HgcU
I have a problem when trying to set the image for the [cell imageView] in a UITableView from the asset library.
The image is loaded but ...
7
votes
1answer
3k views
Android assets, C, JNI
How do you access an Android asset, such as a .txt file, from C with the JNI?
I'm trying "file:///android_asset/myFile.txt", and locally "myFile.txt" with a duplicate of myFile.txt in the jni folder ...
3
votes
5answers
174 views
Rails won't load asset pipeline
I ran rake assets:precompile by mistake on development, and Rails stopped loading the assets on development. I only get application.js and application.css loaded.
application.js:
//= require jquery
...
2
votes
1answer
2k views
How to save back into a file in assets folder
I understand I can open a file in assets folder like this.
InputStream is = ((Activity) mView).getAssets().open("some.txt");
But what should I do to save back to the same file? I mean how do I get ...
2
votes
1answer
473 views
Using “path” and “asset” for non-template data
When creating templates with Twig, it's easy to use the path and asset functions.
<a href="{{ path('my_route') }}"><img src="{{ asset('bundles/acmedemo/my_image.png') }}" /></a>
...
2
votes
1answer
2k views
Load web-application into a webview using local paths for images stored in the application
I want to be able to create an app that uses WebView to request a url
from an external web application which returns html and css that
references images that are assets within the actual ...
1
vote
1answer
1k views
ALAssetsLibrary delete ALAssetsGroup / ALAsset
I have created "photos album" from my App, using IOS AssetsLibrary.
Reading ALAssetsLibrary,ALAssetsGroup and ALAsset documentations, i have seen methods to "addAsset","addAssetsGroupAlbumWithName".
...
1
vote
3answers
3k views
How to get the sqlite path, in asset folder?
I'm a beginner here.
I've got two problem in android programming:
How can i open a Sqlite database, which is stored in the asset folder, in android?
Which path i have to use to access to my app ...
0
votes
1answer
43 views
Error Loading image from asset folder through Implicit Intent by using Phone's Image viewer
I am trying to display different London Tube maps through mobile's camera image viewer app by using implicit Intent. I had tube_map.gif image file in asset folder but when i try to load this file, app ...