Android :: Android Pdf Reader For Large Files - Like Goodreader

Oct 2, 2010

I've had a look at the existing PDF readers,

I've tried Repligo which amazingly doesn't seem to allow full screen, and also seems a little - blurry? At least it remembers what page I'm at.

The Adobe reader seems to render oddly when I zoom in - doesn't remember where I am in huge files when I close the program, and is generally really short on options.

I'm used to Goodreader on the iphone - that had cropping, you could lock your zoom level so you could freely scroll around without having to readjust for columns - it was just really good. Is there anything like that?

Android :: Android pdf reader for large files - like Goodreader


Android :: Large Screen On 1.6 - All XML Files Of Layouts In Layout-large Can't Load

Oct 23, 2009

I want make it support multiple screens(small,normal and large).I am 100% sure the all of layouts are working perfectly now, but large screen,the problem is that all XML files of layouts in layout-large can't load,The platform always load default XML file(these are under layout folder) at large screen environment.

View 4 Replies View Related

Android :: Ebook Reader For HTML Files

Jun 6, 2010

Does an ebook reader exist for Android yet that will open HTML files? I can't find one.

View 4 Replies View Related

Android :: Any Application For Handling Large PDF Files?

Jul 20, 2010

I am looking for an application that can handle large PDF files smoothly. I have tried adobe reader, pdf viewer and RepliGo. They were not very impressive, therefore I have come here for suggestions. Repligo reader I think was better out of the three but I couldn't view a PDF file that had scanned images on it. Was hoping someone could recommend an app that could handle large PDFs and PDFs that contained scanned images.

View 2 Replies View Related

Android :: Avoiding Compression On Large Files

Sep 29, 2010

Apparently you can't have a file in "assets" larger than 1MB (except for certain file types) because it's considered too large to uncompress. But I'm finding mixed info about how to circumvent this limitation. Some say that you can put the files in "raw" and avoid the limitation but others say that files in "raw" are compressed too.And there's the -0 aapt option that can be used to turn off compression for certain file types, but there's no way to specify aapt options in Carbide. I realize that I can break the file into pieces, but that's error- prone on both ends.And using one of the known uncompressed file types not only confuses things but also runs the risk that the Android PTB will decide to start compressing that file type.

View 6 Replies View Related

Android :: Upload Large Files On Web Server

Jul 30, 2010

I want to upload files on a web server in my android app.Currently i am able to upload files around 5mb from the device but more than this gives a outofmemory exception and also makes app very unstable.i am looking for a method using which we can upload the data in the app background plus of bigger size.

View 4 Replies View Related

Android :: App To Zoom In On Large Image Files?

May 1, 2010

I'm using the stock Android 2.1 gallery to view images. I have a large JPG image (approx 7000x7000 pixels) of bicycle route map for my city. I tried zooming and scrolling with the gallery image viewer, but it cannot zoom in close enough to read the map detail.

Is there a better image viewer app out there that is good for zooming and scrolling large JPG images?

I would like to use Google maps, but the bicycle route mode still does not work in the Android app.

View 2 Replies View Related

Android : How Can I Download Large Files On Incredible?

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

Android :: Application Requiring Large Data Files

Jun 10, 2009

I am working on an android app that needs to act on a few data files totaling around 30MB. I put together a test and the emulator failed with OutOfDiskSpace. Debugging on a device failed with even a smaller data size. After reading through the google groups, it appears that the application size limit isn't stated anywhere and nobody from google has been forthcoming with specifics about this. Given that there are iPhone apps that are over 100MB in size, putting such a small limit on Android apps seems weird, except just for the fact that you have a relatively small amount of total available app storage space (< 100MB).What techniques do you use to deal with this limit? If you have an app that needs more than 10MB, do you put it on a web server and deal with downloading it the first time? If so, how do you handle access control so that only your app can get the data?

View 2 Replies View Related

Android :: Eclipse Fails To Build Workspace On Large Files?

Jul 9, 2010

i have a severe problem with eclipse, where i need to compile a somewhat larger class. by "larger" i mean, the class has about 5000 lines of code... problem is that on saving this project, eclipse takes several seconds (30-40) to "build the workspace". to be exact, it says "50%" and keeps saying that for 30-40 seconds. then, it breaks with the following error:

[console]:
[2010-07-09 15:28:39 - Dex Loader] Unable to execute dex: null
[2010-07-09 15:28:39 - myProject] Conversion to Dalvik format failed: Unable to execute dex: null
[problems window]:

Conversion to Dalvik format failed: Unable to execute dex: null this error is reproducible and keeps popping up until i comment out several thousands LOC, so that the file still has this 5k LOC, but ~2000 of them are comments. THEN it works...

i know that 5000 LOC are no really good programming style, but i need to do it this way for now ... (i have to write this much records to a sqlite database and since sqlite doesnt feature multiple sql-queries in one rawQuery-command i have to execute a single rawQuery() for each and every data record i need to push into the db.... - until i write a file reader to read this data from a file (that needs verification etc)), i'm stuck with this solution...)

View 1 Replies View Related

Android :: Include Large Videos Files In Droid Applications?

Jul 2, 2010

I was wondering if the Android had any limitations that would prevent 300+ MB's worth of videos to be included in the application?

Currently, I have several iPhone apps that do this, and due to demand, I am looking at the possibility of porting them over to the Android.

View 3 Replies View Related

Android :: Best Approach To Transfer Large Video Files Into Byte Array?

Apr 8, 2010

Please could anyone suggest an approach for transferring a >2MB video from a ContentResolver into a Bytestream, without running out of memory?
See question: http://stackoverflow.com/questions/2599305/android-outofmemoryerror-w...

Here's the current code, which throws an OutOfMemoryError on the byteBuffer.write(buffer, 0, len) line when transferring large videos:

// get bytestream to upload videoByteArray = getBytesFromFile(cR, fileUriString);
public static byte[] getBytesFromFile(ContentResolver cR, String fileUriString) throws IOException { Uri tempuri = Uri.parse(fileUriString);
InputStream is = cR.openInputStream(tempuri);
byte[] b3 = readBytes(is); is.close(); return b3;
}

View 18 Replies View Related

Make Large Library Of Files Available Through App?

Jun 21, 2012

I'm looking to make a large library of files available through an app. (nearly a 3gb folder and growing.

User would download the APP and then have access to an ever growing library of files they can then choose to download whatever they want from it.

Can this be done by a simple RSS reader?

I don't want the files available to anyone without the app installed. It would only be a text list of the files, clickable to download.

View 1 Replies View Related

General :: How To Download Large Files By Phone

May 12, 2012

How to download large files over 100MB by phone.

View 9 Replies View Related

Android :: News Reader Independant Of Google Reader

Nov 3, 2010

I am trying to find a News Reader and find that most of them seem to rely on feeds from Google Reader and seem not to recognise UK based feeds (or at least I cannot find the same feeds that I used on my iPhone).

View 11 Replies View Related

Sprint HTC Hero :: Problems Sending Large Files

Dec 22, 2009

I've been havng trouble emailing pictures with my HTC hero ("unable to send mail" notices) and wonder if others have had similar experiences. The problem seems to be worse with anything greater than the lowest resolution. Even 400kbyte pictures are a problem. I assume this is just a file transfer problem, not a camera app problem (the app from which the file is mailed). Mails w/o attachments go thru 100% of the time.

I spoke with someone at sprint today, and the first thing they told me was that I need to have at least three bars of signal strength, then I was told that higher resolution pictures can't be sent from the hero.

Given that Sprint does not have more that two bars in most of northern new jersey, this is a bit of a problem. If this is true, I don't think they should be calling this a data service.

For the most part, internet browsing and even video like youtube and TED work fine, and most the time I can get an EVDO connection.

Playing with it a bit, it looks to me like the issue is maintaining a solid data link to upload the file. I'd expect better with a TCP/IP connection, as I've had some experience designing that sort of thing. Late at night, if I get two bars and set the phone down so the signal strength does not waver, I can generally send even a 5 mpixel picture that's nearly 1000k.

I've tried this with the mail set to allow up to 1000k transfers and with no limit on transfer size, and that has no effect.

Some specific questions I have are:

1) Are others having this problem?

2) Anybody have a solution?

3) Anybody notice if it's network congestion related?

4) Anybody know anything about messing with the TCP/IP settings like timeouts and retrys to hold a connection on a spotty rf network?

View 2 Replies View Related

Samsung Captivate :: Enable Uploading Of Large Files With 3g Instead Of Wifi

Jul 26, 2010

I want to be able to upload my large 100mb recorded hd video to youtube via carrier's 3g connection instead of wifi when I don't have wifi available. It pops up with a message saying you must be connected to wifi in order to upload large files. Anybody know how to enable this feature?

View 1 Replies View Related

Android :: RSS Reader With Google Reader Sync

Jun 20, 2010

A one stop RSS reader. Preferably with Google reader sync.

View 9 Replies View Related

Media :: Upload Large Video Files To Facebook From Original Droid

Nov 3, 2010

I Have some long videos (2-5 minutes). I have tried sending them through email, and tried uploading them directly to facebook. When I try this it says the file size is too large. How can I get them to facebook?

View 3 Replies View Related

General :: Battery Life Would Be Affected By Playing Large Music Files?

Mar 23, 2012

I've been watching my battery life recently as I hate my phone dying during the middle of the day and was wondering if battery life would be affected by playing large music files?

I listen to spotify quite a bit and haven't really noticed my battery severely affected by playing music for a long time but this week I was listening to a podcast which was 160MB (2Hr music podcast if you were wondering) and my battery life plummeted. This would also correlate then to why my battery life plummets when listening to other large podcasts.

View 4 Replies View Related

Android :: Best RSS Reader - Except Google Reader

Jun 26, 2010

What would be the best RSS reader if one excludes greader?

View 5 Replies View Related

HTC EVO 4G :: RSS Reader For Android

May 23, 2010

looking for recommendations for a good RSS reader.

I have Newsroom on my Palm Pre, but was told I would need to purchase it again for Android.

Any good ones out there? No preference free/pay, my main preference is that it is a good program.

View 6 Replies View Related

Android :: Way To Get RSS Reader?

Mar 26, 2010

I use Newsroom but would be interested in one that directly sinks with Google Reader. What do you guys use?

View 2 Replies View Related

Android :: QR Reader - Available For Phone

Nov 29, 2008

Anyone know if a QR reader will be?

View 3 Replies View Related

Android :: Good Pdf Reader

Jul 2, 2010

Are there any good pdf readers that save where you are up to in a pdf document so that you don't have to try and find the page you are up to every time you open the document. That is the one feature that the standard one is missing (unless I am just not seeing it)

View 1 Replies View Related

Android :: Pdf Reader To Fit Screen

Nov 24, 2010

If there is a useful pdf reader. i've tried one - it's great - it opens pdf's but is useless for reading as u have to scroll right and left. I would imagine that 99% of the time the pdf reader is useless! is there a pdf reader that forces all of the content to fit your screen width - similar to how they do on browsers.

View 7 Replies View Related

Android :: Speaking Sms Reader

Jun 13, 2010

I intend to develop an app which would speak to the user the message he desires in the inbox. I have successfully created an app where there is a text box and when the user finishes typing in it and presses a speak button, he can hear what he has written, now how do i extend this to the desired app?

View 1 Replies View Related

Android :: Best Google Reader App

Feb 11, 2010

What is the best RSS reader app (free or paid, doesn't matter to me), preferably the best RSS reader that directly syncs two-way with Google Reader without too much trouble?

View 15 Replies View Related

Android :: RSS Reader Like Viigo

Jan 23, 2010

I'm looking forf a good RSS reader for my droid. I use to use Viigo when I had my many assortment of Blackberry's. Anyone know of a good one like Viigo?

View 19 Replies View Related

Android :: Ebook Reader

Jun 17, 2010

Anything on evo and good ebook reader.

View 25 Replies View Related







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