Tagged Questions
0
votes
1answer
38 views
Android get every file in a folder
Let's say I have the folder "/sdcard/my_pictures" and it has a bunch of images in it, img1.png, img2.png, ..., img3.png.
What is the correct syntax to iterate through these? I want something of the ...
0
votes
2answers
155 views
Android Save Image to New Folder
I'm trying to save pictures that I took awhile ago into a different folder (the folder already exists). My manifest is up to date on permissions that I need, and I know I need to use something along ...
0
votes
2answers
33 views
How to push folder into user's phone along with app?
When a user installs my app, I also want to push a folder into their phone. Is this possible?
For example, I have a folder with music samples and I want this folder to also be downloaded and saved in ...
0
votes
1answer
48 views
How to save an image automatically to a specific folder or create a new folder if needed after taking a picture using the camera for android
I am currently trying to create an app which when taking a picture using the camera, when saving the image, it saves to a specific folder location and if the folder doesn't currently exist on the ...
-1
votes
1answer
115 views
loop through an image folder and show in imageview android [closed]
Hi I need to have a folder where images are downloaded. Then iterate through the contents of that folder to show images one by one for pre set time period.
My screen is divided into3 parts. in 1st row ...
0
votes
2answers
59 views
How to check empty-ness of a folder recursively, excluding a specific folder?
I'm not an expert of linux/unix shell commands.
Sorry for being so specific, but I would like to ask:
Suppose I have a folder and I need to check that it's empty of "simple" files (all files ...
-1
votes
1answer
62 views
How to Lock folder pro-grammatically in android?
It is possible to Lock folder with password protected programmatically?
http://developer.android provides File-lock but i want to Lock folder not a File.
Android operating system is totally based on ...
0
votes
1answer
115 views
Eclipse and Android NDK compile C++ Code in another folder than JNI
I Have a folder with follow struct:
/-
|-CPPCore-
|-C++ Code
|-Android-
|-Eclipse Root Project and standarts folders, "src", "lib", "res"..
|-jni folder << here ...
0
votes
0answers
57 views
start intent when opening a folder
I am trying to do one app which will have a textbox.
This TextBox should appear when am trying to open a folder in my SD card. Then I want to type a password in the textbox and when I do so, if the ...
0
votes
3answers
399 views
How to lock Android folder programmatically?
I am making an Android application, and I want to prevent users from opening some folder. In that folder user can store image or video files. It would be great if I could protect that folder with ...
0
votes
5answers
89 views
How to create a folder “beam” on SDcard (“/ sdcard / beam”)
I need to create a folder "BEAM" on the SD card, but it says to me that the folder cannot be created.
I used this code:
File mediaDir = new File("/sdcard/beam");
/ / Create a folder if ...
0
votes
1answer
131 views
Prevent the user form deleting the folder or file in sdcard
I am saving a folder in this location Android/data/package-name/files/ now i want to restrict the user to delete that folder.
How to do that?
Note: Since i am working on Expansion Files the ...
2
votes
0answers
343 views
android open specific folder using built-in gallery
I am trying to open specific folder using gallery and have referenced to other similar questions open image form built_in gallery, and implements the following code, but still fails and reports error ...
0
votes
0answers
51 views
Android: Folder name using chinese characters not supporting
In my Android application, I am creating folders in the SDCard dynamically. Name for the folders are retrieved from servers. I am facing issue for creating the folder name when the name contains ...
0
votes
2answers
72 views
File copy action error android
I have got this code.
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
File srcFolder = new ...
0
votes
1answer
113 views
File copy action android
I am trying to make a file copy action with this code
but it gives me an error Syntax error, insert "}" to complete ClassBody MainActivity
at the place where i put **
help me please
package ...
-5
votes
1answer
55 views
Android copy action [closed]
I just wanna ask for the code which will copy the folder with files from sdcard to other location.
Just write me how to do it if you know how to.
I prefer copy from sdcard to specific location.
...
0
votes
1answer
38 views
Folder not created on android device
I take a picture with my android device and in the method onPictureTaken of the classe PictureCallback I have written
File imagesFolder = new File(Environment.getExternalStorageDirectory(),"test");
...
0
votes
2answers
51 views
How can i know if an app is creating a folder?
How can i know if an app is creating a folder on the sdcard?i want to allow the user to delete the data left over by the app after it is uninstalled .
0
votes
1answer
103 views
Sort the assets folder with Andengine
Google translator
I'm making a game with Andengine and inside the folder "assets" I have three folders gfx, mfx, font (protected folders are there more?)
The folders are full and it works fine.
On ...
0
votes
1answer
78 views
Android Delay in Picture Appearing in Custom Folder
In my app, I use the built in camera to take a picture and then I store it in my own custom folder. For whatever reason, my image takes a long time to display in my custom folder and I can't figure ...
0
votes
1answer
241 views
Android WebView setting download folder location
I've added a webview activity and would like to control which folder any downloaded that my end users will download via my app. The files will be pdf files and I would like them to go into a specific ...
1
vote
1answer
806 views
Android Display Images From Specific Folder in Gallery View
I'm trying to make a little app that displays only images from a specific folder in a gallery view. I have found a few examples, but every single one just ends up displaying only 1 image. This ...
0
votes
1answer
71 views
Why my decompress class don't make directories?
I have a class to decompress files, it works fine when the zip doesn't have any folder inside. If it does then it just throw errors.
Hers my class:
public class Decompress
{
private String _zipFile;
...
0
votes
1answer
120 views
Android storing media files: use the raw/ folder or the assets/ folder?
Why choose one over the other? How are they stored on the phone?
Thanks
1
vote
1answer
82 views
Android Camera Image Not Viewable in Custom Folder
I've been working away at a camera app that would simply just store pictures taken by the camera in a custom folder. I've run into a weird error that I haven't been able to find a duplicate issue of. ...
2
votes
2answers
1k views
Android Save Camera Image in Custom Folder
I know this question may seem repetitive as compared to a few other questions on here How to save image captured with camera in specific folder[like this] but I am still having trouble. What I'm ...
1
vote
1answer
648 views
Android: take picture and save it to a specified folder
I have this code:
public void onCreate(Bundle savedInstanceState){
super.onCreate(savedInstanceState);
setContentView(R.layout.inventario);
Button scatta=(Button) ...
1
vote
0answers
107 views
Java Zip a Folder and File
I want to zip a folder. Actually I managed it.But there is a problem. if there is a empty folder in my directory, the empty folder is not created in my zip file
For example my directory is:
/folder
...
2
votes
4answers
345 views
How to save taken pictures to a specific folder? [duplicate]
Possible Duplicate:
How to get camera result as a uri in data folder?
I'm taking a Picure, and saving it in the default folder.
Here is my PictureCallBack() function:
PictureCallback ...
2
votes
1answer
1k views
How can I display images from a specific folder on android gallery
How can I display all images from a specific folder on android gallery like, for example, whatapp does.
I`m using MediaScannerConnectionClient
File folder = new File("/sdcard/myfolder/");
allFiles = ...
0
votes
0answers
78 views
Android: DropBox Folder access issue in Android
I already get the production status permission from Dropbox. But when i go to login page of dropbox through my app than i go to this page..?
Anybody know why this is happening..The help will be ...
0
votes
1answer
243 views
Struggling with assets folders
I've been struggling with a simple assets directory listing. I have the following structure (roughly speaking):
-dirA
--data.xml
--AudioSUBdir
---some files here
--VideoSUBdir
---some files here
...
0
votes
2answers
119 views
another folder creation on Android
It's been two days now I'm stucked on a veeery common and simple problem I don't seem to be able to solve (while other people are):
creating a folder on a SD card on Android!!! YES!!!
I red many ...
0
votes
4answers
1k views
Open images in specific directory using Gallery doesn't work on JB
I'm trying to show images in the specific folder using default Android Gallery. I found only one sample code to do this. I have simplified that code and now it's much clear:
public class ScanActivity ...
1
vote
2answers
266 views
How to check if folder is empty in loop?
I have one problem I know how to check if folder is empty, but I always get an error when I check if folder is empty in loop, here is example of my code which doesn't work.
String sdcard = ...
2
votes
0answers
139 views
android app testing in eclipse; location of ini file
when trying to run a test of hello world html site in eclipse on a virtual android, I am getting a strange panic error message, that it can't find the relavant ini file for that virtual android.
I ...
0
votes
2answers
523 views
Android drawable folders
I have one background I have made for my app. But I am not sure which folder to put it in, and in which size?
Which size should I save my background in the ldpi, which size for mdpi, hdpi and xhdpi?
...
0
votes
0answers
150 views
Dropbox API Upload Folder in Android
Within an android app, I want to upload a folder to the apps dropdox rather than a single file. (Mainly as there will be sub folders within and it is unlikely that I will know).
Anyone know a good ...
1
vote
4answers
448 views
Create folder in sd card
Alright so I created 2 folders in the SD card using the following code:
String folderPath = Environment.getExternalStorageDirectory() + "/AllAroundMe/Images/";
File file = new File(folderPath);
...
1
vote
2answers
481 views
How to find the apk path on android?
I installed my android app(apk file) on my phone, when I go to my files: i can't find my com.myappnamefoler.net in folder(/sdcard/Android/data). is there a default path?
2
votes
0answers
524 views
how to create a folder in sdcard programmatically that can be shown directly in windows and in the phone
I created an android application in which it creates a folder that stores data, but I want it to be shown right away in windows when the usb is connected. right now, it can only be seen after i ...
0
votes
0answers
165 views
How to get content of specific folder in root?
Could anybody tell me how can I get a content of specific folder in a root, I know how to get content of folder on sdcard, but not in the root.
This code doesn't work in root:
String[] files = new ...
-1
votes
1answer
84 views
Android project: Eclipse erased entire res folder after “refresh”? [closed]
I was editing some drawable XMLs in Eclipse but changes weren't applying so I did "Clean project" and "Refresh" a couple of times... when suddenly the whole /res folder is gone! Eclipse erased it! Is ...
-1
votes
1answer
63 views
How to put xml files in a new separate folder?
I have 30 xml files or layouts which i would like to place in a separate folder for convenience. Where should i create this folder and how can i retrieve those files? Thnx in advance.
0
votes
1answer
310 views
as3 downloading content from server to application directory?
import flash.filesystem.*;
/// Change the line below to point to your mp3 online
var urlString:String = "http://edvizenor.com/upload/php/files/trust.mp3";
var urlReq:URLRequest = new ...
0
votes
2answers
618 views
as3 air for android download folder and contents
Is it possible to download a folder and its contents using air for android? I would like to also use the same code on iPhone.
I need it to be stored in the application storage so we can reference the ...
1
vote
3answers
381 views
Open folder on button click with “My files” application
I am making android application. On button click I just need to open specific folder where I have pdf's so user can choose some pdf to read from that folder.
I manage to list all files from pdf ...
0
votes
1answer
186 views
How do I access my app's package folder in Android using Adobe AIR / Flex?
I have an application for Android built using Flex. I need to save some configurations and data so I want to know how I can access the package-specific folder for my app instead of creating my own ...
1
vote
1answer
537 views
Delete Folder from SDCARD when Unistall App [duplicate]
Here i created one Android Application which download images from web and store images in Folder which located on SDCARD. When i Uninstall my Android Application i want to delete that Image Folder.
...

