Android : How Can Phone Activity Download Files?
Nov 22, 2010
I'm trying to use this to download mp3 files Intent downloadIntent = new Intent(Intent.ACTION_VIEW, Uri.parse( "http://www.xxx.com/1.mp3")); but it always opens another application to play this mp3 file. i only want to download it ,how can i do ? thanks
View 2 Replies
Aug 25, 2010
I tried downloading slideme's sam.apk or any other file for that matter. But anything I download it just has a bar that keeps moving but nothing happends for hours and hours. I dunno if anyone has had this problem before but this is getting quite frustrating
View 2 Replies
View Related
Jun 17, 2010
When there is a countdown for a "non-premium" download, specificially megaupload. Does this make sense? Whenever there is a countdown download, my dolphin browser loads the page up and the countdown stops. Does anyone know a workaround to this problem?
View 2 Replies
View Related
Jul 2, 2010
First question...If I get an evo (or any android based phone) does it need to be activated for me to use the wife feature and download app from the android marketplace? Or do I need to have the phone activated to access the marketplace? Will I even be able to use the wifi?
Second question...I figured smartphones are smart. Can I download mp3 files from the internet to the phone itself? In more detail, I use zamzar for my music. I go to youtube, copy the url of the song/video I'm watching, zamzar converts it to mp3, sends it to my e-mail, I follow the link in my e-mail, and the song begins to download. Is this possible on the Evo? Even if the file can't be opened unless I do something on the comp first, as long as i can actually download the file.
View 6 Replies
View Related
Jul 2, 2010
I can't seem to download any files from my gmail on my phone. i can only "preview." can't seem to find a way to save an attachment.
i don't have problems downloading from my yahoo account.
View 1 Replies
View Related
Nov 27, 2012
Any way to browse a PC directory structure using an android phone (Galaxy Note 2 in this case) and maybe download files directly to my SD card?
I have a laptop and the screen has gone - most of the info is backed up but there are a couple of documents I would like to try to salvage if possible.
View 2 Replies
View Related
May 12, 2012
How to download large files over 100MB by phone.
View 9 Replies
View Related
May 9, 2012
I plan on flashing this mod, and when I open the link to download the file on my phone it wont download. I can click the download button as many times as I want and it wont download. How do I get the file on my phone?
View 4 Replies
View Related
May 28, 2010
i'm trying to download a torrent file i was able to do this with my droid but am unable to with the incredible is there some type of setting to allow the phone to download all types of files?
View 21 Replies
View Related
Oct 18, 2010
Does anyone know of a way to download rapidshare files on Moto Droid 2.2?
View 3 Replies
View Related
Jan 16, 2013
Wondering if I can download files on my phone an have them automatically downloaded on my laptop assuming my laptop is connected to the internet.
View 1 Replies
View Related
May 6, 2010
I'm trying to download the SMS app from XDA and the guy has it up as a zip file. I download it and extract it, and it's a folder with random crap in it. No apk.
Then I read that I just change the file name. I'm on a Mac, so I change the filename and it verifies if I want to change it from .zip to .apk and I say "yes." Put it on my card and Astro still doesn't recognize it. It's list, but it's an icon with a window and a gear in front of it.
I installed the Vanilla email app, no problem. Not sure what the deal is with this one.
View 15 Replies
View Related
Jun 24, 2010
I'd like to be able to compile an Android app on my desktop, upload it to my phone and launch the app without having to plug in my phone via USB. I want this for 1) convenience when developing and 2) SD card access isn't available when plugged in. One idea I had was to write an app that would download the app from the computer wirelessly (e.g. or via a website the app was uploaded to) and then launch the app. The APK doesn't need to be installed in this process, but if it did, I wouldn't want there to be any user interaction. Is this possible? I suspect it won't be because of security implications. Are there any alternative ways to do this? I essentially want some way to do over the air updates for an application. Perhaps I can upload a single class file for the app that can be launched?
View 1 Replies
View Related
Jul 2, 2010
From my application i can able to download the files from the internet. but the files are downloaded to sdcard/downloads directory by default. Is it possible to change this location so that user can give the path to save the file?? Is it possible to save the files in internal memory?
View 8 Replies
View Related
Jul 14, 2010
I've tried downloading/transferring several files to my incredible over 3g. Tried downloading a couple times through the stock browser and also i've tried downloading through dropbox but every time the download gets randomly interrupted sometime between when 20mb - 100mb is done. I am not getting any calls or texts or anything that would interrupt it - it seems like the phone is going to sleep in the middle of the download or something. The files I am trying to transfer are approx 200mb .MP4 files and .MP3 files. Anyone know how to fix this problem and/or know of an app that will let you download or transfer large files from my home computer or from HTTP through my web host? On my BB Storm I had to use opera browser to download large files so maybe a different browser would work?
View 1 Replies
View Related
Apr 9, 2010
When I am trying to download files from certain websites, including my school's website, the files attempt to download and complete almost instantly, usually with varying bytes or KB of data downloaded, not the full file. On my school's site I try to download a variety of file types including .pdf .doc .ppt and some .zip and it's the same thing with all of them, this has happened on several other sites as well, but usually I can download these file types without a problem. I am just wondering what could be causing this problem and if it is fixable.
View 1 Replies
View Related
May 13, 2010
My application will have some customisation for each company that uses it. Up until now, I have been loading images and strings from resource files. The idea is that the default resources will be distributed with the application and company specific resources will be loaded from our server after they click on a link from an email to launch the initialisation intent. Does anyone know how to replace resource files? I would really like to keep using resource files to avoid rewriting a lot of code/XML. I would distribute the application from our own server, rather than through the app store, so that we could have one version per company, but unfortunately this will give quite nasty security warnings that would concern our customers.
View 3 Replies
View Related
Jul 5, 2010
I've set set files to localhost an set the href links for the epub files.
<a href="more-utopia.epub" target="_blank"> more-utopia </a><br>
And I've try to browse from my custom web view but when I click to download the link, it appears no download and open the file in the browser with custom web view.
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
WebView web = (WebView) findViewById(R.id.webview);
web.getSettings().setJavaScriptEnabled(true);
web.loadUrl("http://10.0.2.2/epub");
web.setWebViewClient(new myWebView());
} class myWebView extends WebViewClient{
@Override public boolean shouldOverrideUrlLoading(WebView view, String url) {
url = "http://10.0.2.2/epub/"; view.loadUrl(url); return true;
} }
What I want to do is to download the files and want to set path the download location to user selected location.
View 1 Replies
View Related
Feb 28, 2009
I just received my unlocked g1 the other day. I was a hardcore i phone owner but now switched over. I am trying to find out all of the useful apps and if there is anyway i can get access to the paid apps? Also is there anyway i can download and read pdf or doc files?
View 2 Replies
View Related
Jul 7, 2010
Can someone explain me how I would be able to imitate the default browser when trying to download .apk from the net?
View 1 Replies
View Related
Nov 25, 2010
ok i am trying to download apk files from 4shared and when i go to download them i get a message saying the content is not supported on the phone. no application can be found to open this file
View 20 Replies
View Related
Aug 27, 2009
Does Android have APIs for HTTP progressive download for media files?
View 2 Replies
View Related
Apr 6, 2010
Anyone else have this problem? I was trying to download a word document and it said it completed instantly but the file isn't complete. I run the sense ROM...and I believe I'm on the latest radio (Unless a n ew one has come out and I missed it) AND I'm on T-mobile.
View 2 Replies
View Related
Sep 1, 2010
When i download a wmv file, it plays the sound but not the video. Any suggestions?
View 1 Replies
View Related
Dec 29, 2009
Having a problem downloading audio attachments sent through text messages and i know you are supposed to do a long press and wait for the menu to pop up but mine never pops up so i cant save any picture or audio files ppl send me and i made sure to check the unknown sources box in settings under unknown sources so i don't know what else to do.
View 4 Replies
View Related
Aug 5, 2010
Just bought a htc wildfire and to my disappointment I discoverd that I can�t listen to links at web pages. The browser says "can�t read m3u files".
Found on the forum that one way to go around this is to download streamfurious. However I don�t find it in android market! No idea why, I find other programs.
View 1 Replies
View Related
Sep 13, 2010
I've tried to download 2 different .avi files, and I get "cannot download. the content is not supported on this phone". eh? SF is supposed to be able to play .avi, correct? anyone know what the deal could be?
View 2 Replies
View Related
Sep 4, 2010
So i'm running BBv0.4 and it keeps saying "phone does not support" when i try and download themes, stopota.zip, and some others. What am i doing wrong? Do i need to do it through a PC, a file manager, or something else? Other than this the rom seems to be running great! i just can't download somethings so i'm thinking i'm missing some point or something.
View 3 Replies
View Related
Jul 20, 2010
I'm interested to know if their is a way of browsing nzb sites, and then when I see one I want to download, it automatically goes to my home pc and starts downloading.
View 7 Replies
View Related
May 29, 2010
I have a friend who has a moto droid and I have the Dinc. We work for the railroad and we can carry the railroad rules on our phones instead of carrying our rule books. I use Isilo on my phone and download the rules from the UPRR web page. My friend installed Isilo but his moto droid won't allow him to download PDB isilo files. When he tries to download the file it say's that the file is an unsupported file. Can someone help please?
View 4 Replies
View Related