joesox / cpforandroid

Automatically exported from code.google.com/p/cpforandroid
0 stars 0 forks source link

Some items will not clear after read #8

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Read all items in the Latest Article feed
sometimes one will not clear out

What is the expected output? What do you see instead?
For example
'Creating a localized Windows Installer' sun 22 aug 2010 18:40 gmt 
is still shown and when clicked on it something else is displayed
'Writing an extensible polling service'

This appears to be an issue with DisplayRSS(RSSFeed rssfeed)

Original issue reported on code.google.com by joesox on 23 Aug 2010 at 5:02

GoogleCodeExporter commented 9 years ago
FIXED in Version 1.9+
I was able to reproduce the bug when using a debug rssfeed

click on Title2: position=2
click on Title3: position=2
    position 2 is removed from curFeed
    then DisplayRSS(curFeed) is off

Calling DisplayRSS(curFeed) before the removal fixed the bug.

Original comment by joesox on 25 Aug 2010 at 6:33

GoogleCodeExporter commented 9 years ago
Not fixed, reloaded on physical DroidX and still having an indexing problem. I 
will debug some more using the real rss and not just the test rss.

Original comment by joesox on 25 Aug 2010 at 6:49

GoogleCodeExporter commented 9 years ago
FIXED in Version 1.10+
DisplayRSS(curFeed) only displays the links not in the database so in method 
onItemClick only use the incoming value from:
RSSItem c = (RSSItem)parent.getAdapter().getItem(position);//What RSSItem was 
selected
since that IS what the user selected.

Original comment by joesox on 26 Aug 2010 at 2:04