Android Community
Page 1 of 2 1 2 LastLast
Results 1 to 10 of 18

Thread: Google Reader Widget

  1. #1
    Join Date
    Jan 2009
    Posts
    137

    Default Google Reader Widget


    I know there are apps for this that are just a click away, but i think it would be a nice option to have a set widget on my desktop that automatically updates.

  2. #2
    Join Date
    Sep 2008
    Location
    Duuuuuuval (Jax, FL)
    Posts
    766

    Default Re: Google Reader Widget

    That would be cool. I use google reader more than I care to admit.

  3. #3
    Join Date
    Oct 2008
    Location
    Sunland, CA
    Posts
    522

    Default Re: Google Reader Widget

    I just started using google reader...


    Using: Samsung Galaxy S 4g on T-Mobile. Firmware 2.2.1

  4. #4
    Join Date
    Oct 2008
    Location
    Brooklyn
    Posts
    316

    Default Re: Google Reader Widget

    I'm married to Google Reader. We've consummated and we're expecting our first child in July.

    This is how much I love Google Reader.

  5. #5
    Join Date
    Jun 2009
    Location
    UK
    Posts
    13

    Default Re: Google Reader Widget

    I'm also hooked on Google Reader but I couldn't find a widget for it on the market. So I created my own: http://ubikapps.net/?page_id=69. If you have a Google Reader account then please give it a try and let me know what you think.



    Cheers
    Mark
    Black HTC Dream with Cyanogen 3.6, apps to sd, HTC IME, custom boot pics.
    White HTC Hero.
    Check out my mobile dev blog for reader widget news and more: ubikapps.net

  6. #6
    Join Date
    Nov 2008
    Posts
    400

    Default Re: Google Reader Widget

    Quote Originally Posted by footboydog View Post
    I'm also hooked on Google Reader but I couldn't find a widget for it on the market. So I created my own: http://ubikapps.net/?page_id=69. If you have a Google Reader account then please give it a try and let me know what you think.



    Cheers
    Mark
    cool, i will defientaly go download it, thanks for making this!

  7. #7

    Default Re: Google Reader Widget

    Nice widget, does what it says, but I have a couple of suggestions.

    I'm not sure how useful displaying the most recent unread item's time is. It might be better to change the UI text to say something more informative like "8 unread notifications", as the most recent time doesn't really give us any information.

    Also, it opens the browser to display the news, but the real point of a widget is it is some (sometimes misleadingly!) lightweight app that doesn't require you to open the browser etc. Would it be possible to integrate a little pop-up screen from the homepage that shows the title (expandable to full text) of the updates, that you can scroll through? A google reader client if you'd like... that would make this app great

    (And mean I don't have to do it myself, as a google reader client widget is near the top of my list :P)

  8. #8
    Join Date
    Jun 2009
    Location
    UK
    Posts
    13

    Default Re: Google Reader Widget

    Quote Originally Posted by Supernova View Post
    Nice widget, does what it says, but I have a couple of suggestions.

    I'm not sure how useful displaying the most recent unread item's time is. It might be better to change the UI text to say something more informative like "8 unread notifications", as the most recent time doesn't really give us any information.

    Also, it opens the browser to display the news, but the real point of a widget is it is some (sometimes misleadingly!) lightweight app that doesn't require you to open the browser etc. Would it be possible to integrate a little pop-up screen from the homepage that shows the title (expandable to full text) of the updates, that you can scroll through? A google reader client if you'd like... that would make this app great

    (And mean I don't have to do it myself, as a google reader client widget is near the top of my list :P)
    Thanks for trying it and for the feedback. I thought about the unread item time alot. It can be confusing I know but I wanted something that provided a little more info than just the unread count and it was in the API for the taking. How about dispaying minutes since newest unread item or would that be more confusing?

    As for creating a light weight Reader client, I have thought about it but this widget took me long enough! It would be cool if it synced for offline reading as well (Google could do this on the Android version of the Reader site with Gears for mobile but for some reason they haven't yet). I want to make a larger widget as well that displays the unread counts of each tag in Reader and maybe has a manual refresh button.
    Black HTC Dream with Cyanogen 3.6, apps to sd, HTC IME, custom boot pics.
    White HTC Hero.
    Check out my mobile dev blog for reader widget news and more: ubikapps.net

  9. #9

    Default Re: Google Reader Widget

    May I ask where you found the documentation for the Google Reader API?

    Quote Originally Posted by footboydog View Post
    How about dispaying minutes since newest unread item or would that be more confusing?
    Perhaps something saying "X unread, X new today" would be more useful? One day I might not check the reader but if I knew here were 10 items today I might think to check as lots of interesting things are currently going on.

    The difficulty in creating a lightweight client will be proportional to the quality of the documentation for the API and the type of methods available, I shall have a look if you send me the link

    Quote Originally Posted by footboydog View Post
    It would be cool if it synced for offline reading as well (Google could do this on the Android version of the Reader site with Gears for mobile but for some reason they haven't yet).
    This could probably be done now without Gears. Maintaining synchronicity between a browser and a single device isn't such a huge problem. It's only a problem between systems with loads of users on the same data... for instance I doubt more than one person will be using the same google reader account. Because of this, you could store the (say) latest 30 feed stories in the local database. If you were offline you can read from the database and cache "Delete" commands to be used later. The deleted news items can be moved to another table which can be checked whenever the network connection is regained, then issue the delete command. If something was deleted on the browser it would remain in the android client though, you could check if an item has been deleted manually but I doubt it really matters as the item will disappear in 30 messages time anyway

    Does that make sense? It all depends on this API ofcourse, I wasn't aware that google had released one!

    Heh, edit: I realise I am throwing quite a lot up into the air, they're just ideas If you want to have a go at implementing them then that's fine with me.... but I forgot to say well done for the work you've already done ;D
    Last edited by Supernova; 06-16-2009 at 03:31 AM.

  10. #10
    Join Date
    Jun 2009
    Location
    UK
    Posts
    13

    Default Re: Google Reader Widget


    The API is sort of unofficial but I got most of my info from here: http://code.google.com/p/pyrfeed/wiki/GoogleReaderAPI

    Its a python client for the API but I used the documentation.

    Its definitely possible to do a client that gets all the info in reader. It would take multiple calls to the API though. You would have to hit http://www.google.co.uk/reader/api/0/unread-count, parse out all the unread stuff and hit the URLs for them e.g. http://www.google.com/reader/atom/fe...om.google/read.

    Oh and what I said about Gears: if I spent lots of time developing an offline Google Reader client and then suddenly Google does it anyway using Gears then it might be a lot of time wasted!
    Last edited by footboydog; 06-16-2009 at 03:45 AM.
    Black HTC Dream with Cyanogen 3.6, apps to sd, HTC IME, custom boot pics.
    White HTC Hero.
    Check out my mobile dev blog for reader widget news and more: ubikapps.net

Page 1 of 2 1 2 LastLast

Similar Threads

  1. Google Reader on the G1?
    By ren857 in forum General Phone Chat
    Replies: 9
    Last Post: 08-30-2011, 04:02 AM
  2. Anyone want a stand alone Google reader app???
    By AndroidBoy323 in forum All About Andorid Software
    Replies: 26
    Last Post: 05-22-2009, 11:44 PM
  3. Google Reader Does Not Refresh?
    By lb623 in forum All About Andorid Software
    Replies: 3
    Last Post: 12-22-2008, 02:11 PM
  4. google search widget problem
    By mlevin in forum General Phone Chat
    Replies: 13
    Last Post: 11-22-2008, 10:10 AM
  5. Trouble searching with Google Widget
    By OREGON in forum General Phone Chat
    Replies: 5
    Last Post: 11-11-2008, 11:06 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •