Android :: Robust RSS/Atom Reader
Oct 13, 2010
I am trying to implement a robust RSS/Atom reader for android, and since Xerces won't compile I am struggling to find an alternative. I am using org.xmlpull.v1.sax2.Driver(), however this just wraps a DOM parser with SAX callbacks. Is there anything comparable to Xerces on Android?
View 1 Replies
May 18, 2013
I have bought the Lenovo K900,now trying to find a way to get root permission~ the device uses Intel Atom z2580 core,based on x86 architecture
View 9 Replies
View Related
Jun 29, 2010
The LocationManager API in android seems like it's a bit of a pain to use for an application that only needs an occasional and rough approximation of the user's location.The app I'm working on isn't really a location app per se, but it does need to get the user's location in order to display a list of nearby businesses. It doesn't need to worry about if the user is moving around or anything like that.Show the user a list of nearby locations.Preload the user's location so that by the time I need it in Activity X, it will be available. Don't particularly care about accuracy or frequency of update. Just grabbing one location is sufficient as long as it's not way off. Maybe if I want to be fancy I'll update the location once every few mins or so, but it's not a huge priority.
Work for any device as long as it has either a GPS or a Network Location provider.
View 5 Replies
View Related
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
Oct 27, 2010
I'm writing a bitmap editor where I use the Command Pattern to represent actions that will transform the document. I keep all the commands executed so far in a list and, to implement undo, I restore the document to its initial state and then replay all but the last command.
I would like my undo/redo system to have the following feature: When the user closes the editor and returns, the document, including the available undo and redo commands, should be restored to the state it was in when the user left.
I'm implementing this for Android where your application can be given very little notice before it will be cleared from memory if e.g. the user gets a phone call. Also, some of my commands are e.g. a list of all the x,y co-ord the user painted on so these might take a few moments to save to disk.
My current idea is as follows:
When a new action is performed, the command object is added to a list S for commands that need to be saved to disk.
A background thread is used that will continually take commands from list S and save them to disk. The postfix of the filenames used will be numbered in sequence. For example, if the user filled the screen then drew 2 circles, the command files might be called FillCommand1.cmd, DrawCircleCommand2.cmd, DrawCircleCommand3.cmd.
Periodically, we save a "checkpoint" command whose purpose is to store the full document state so that, even if one of the .cmd files is corrupted, we can restore a recent version of the document.
When the user exits the app, the background thread attempts to finish up saving all the commands it can (but it might get killed).
On startup, we look for the most recent .cmd file that represents a checkpoint that we can load successfully. All the .cmd files we can load after this (i.e. some files might be corrupt) go in the redo command list, all the .cmd files we can load between the first checkpoint loaded and the oldest checkpoint we can load go in the undo list.
I want the undo limit to be about 20 or 30 commands back so I need extra logic for discarding commands, deleting .cmd files and I've got to worry about multi-threading behaviour. This system seems pretty complex and will need a lot of testing to make sure it doesn't go wrong.
Is there anything in Java or Android than can help make this easier? Am I reinventing the wheel anywhere? Maybe a database would be better?
View 2 Replies
View Related
Feb 19, 2010
In Android, you need to implement the following Activity methods so your application can be restored to its previous state if the OS decides to destroy then recreate your activity:
public void onSaveInstanceState(Bundle savedInstanceState)
public void onRestoreInstanceState(Bundle savedInstanceState)
The examples I've seen of implementing these methods is to use put/getBoolean, put/getInt etc. on the Bundle object (i.e. primitive objects only) to save the application state. This seems hugely error prone way to save your state for a start and I cannot see how this scales to storing complex objects without writing lots of code.
What options do I have for storing/restoring state in a robust and easy to implement fashion?
In case it's important, my application (a game) needs to store about 50 objects, which each store maybe 5 float variables and some store references to other objects. I don't particularly want to have to write save/restore methods for every class and subclass (maybe about 15 of these) I use. It would be ideal if I could just stick all my state relevant objects in an object called "state" and then just call save/load on "state" to handle everything.
Is using Java serialization an option? I've heard it's very slow, but is that a problem for save/restoring? Could I just write my data to the SD card? To a database?
View 1 Replies
View Related
Jun 20, 2010
A one stop RSS reader. Preferably with Google reader sync.
View 9 Replies
View Related
Jun 26, 2010
What would be the best RSS reader if one excludes greader?
View 5 Replies
View Related
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
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
Nov 29, 2008
Anyone know if a QR reader will be?
View 3 Replies
View Related
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
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
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
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
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
Jun 17, 2010
Anything on evo and good ebook reader.
View 25 Replies
View Related
Jun 23, 2010
I would like to sync some content in my application with google reader. I know that there are apps on the market that access google reader so I know that it can be done.
Are there any built in java apis in android to access google reader, if not, what do you think is the best approach to implementing this.
I've googled a bit on this and I have some ideas on how to implement this, but I don't want to reinvent the wheel if there already is a working solution available.
View 2 Replies
View Related
Jun 19, 2010
Two simple questions
1. What is your favorite E-Book reading app
2. Why is it your favorite?
I am going on vacation in a couple weeks and would love to take some books with me, with out having to carry books with me lol.A good library of free books is appreciated, but I am not opposed to paying a reasonable price for good books.
View 49 Replies
View Related
Aug 11, 2010
I have a Telus HTC Desire and I'm trying to put Barnes Noble's ereader on it. When I go to the market and search either BN reader or Nook it comes up blank...it's supposed to be there. Is anyone else having this issue? Does anyone have the installer file?
View 3 Replies
View Related
Jun 13, 2010
Been looking through all the readers & have yet to find one that supports this format.
View 1 Replies
View Related
Dec 7, 2009
Has anyone tried to make a epub reader software?
View 6 Replies
View Related
Jul 1, 2010
My mother recently indicated that she's considering being in the market for an ebook reader. However she is, bless her soul, firmly insistent on open format, DRM-free, and the ability to "really own" a book she's downloaded. She doesn't even want the potential for a Kindle-1984-type remote-wipe or an inability to move a book to another device later. (Yes, my mother has grown up to be a Free Software evangelist. I'm so proud of her. *sniff*)
Of course, she doesn't know the ebook market all that well, and frankly neither do I. She's considering the B&N Nook, but from what little I know it has the same lock-in problems as the Kindle.
So my question is, I suppose, two-fold:
1) Are there any ebook stores or services available for any device that don't treat customers are criminals waiting to happen, and use a DRM-free format without revocation ability? Are they bound to a given device, or are there any that work on an arbitrary Android device? A good ebook reader app or use of the open ePub format (for which I understand there are several readers available) is a plus here.
2) Of the various devices out there (both phone and non-phone), which make particularly good ebook readers? She has a decently large purse but it still wouldn't hold an iPad-sized device comfortably, but at the same time a 3-inch screen is not going to work for her eyes. (It barely works for mine.) What's a good device if that's your main interest? Any good/bad experiences here, or at least things to look for?
View 3 Replies
View Related
Nov 23, 2010
An ebook reader app that has an integrated (or anyway a very handy) dictionary or translation feature.
I'm tired of switching app and type the word when i should just hold on a word to directly access its meaning.
View 4 Replies
View Related
Jun 29, 2010
Does anyone have a recommendation for a RSS Feed reader similar to the Google Reader for the Android that they like?
View 2 Replies
View Related
Nov 18, 2010
I know I can view PDFs, but what am I using to do it? I don't seem to have Reader listed in my installed apps list.I'm asking because I was going to update to the latest version, but now I'm not sure if I'll be updating or installing it for the first time. Does Froyo natively open PDFs or something? (On a related Adobe note, should I go ahead and install AIR now, in case I need it after Gingerbread comes out? I don't even know what it does, really, but apparently installing it *after* an OS update causes problems. Why Adobe can't just fix that issue, I have no idea.)
View 1 Replies
View Related
Sep 25, 2010
Is there an app that lets you access your Google Reader feeds, rather than going to the mobile website?
View 8 Replies
View Related
Jul 18, 2010
I'm coming from BlackBerry to Android and two favorite apps were Viigo and FreeRange with their built-in full article reading support. Is anything available for Android with similar functionality. Opening up a browser to read full articles is so clunky. I'd be willing to pay for one. I've tried some of the existing free Android offerings, but they all open full versions in a browser.
View 7 Replies
View Related
Jun 10, 2010
Looking for an app that will read your incoming text messages out loud while you are driving. Tried searching on Market but didn't know what to search for, I guess.
View 3 Replies
View Related
May 5, 2010
I have a Droid Incredible and I'm looking for a good newspaper reader/widget. I've downloaded a couple (AG Newspapers US is one) but when the pages load they're too large to read. In addition, the zoom-out button and pinch zoom-out don't work.
View 7 Replies
View Related