Android - Add An Item From One Listview To Another Listview?
I have an app that shows news from a RSS feed. There is ListView-1 which loads the news and when you click on an item(news), it shows only the selected news in a seperated xml layo
Solution 1:
You don't need intents, just separate view and data, keep news in the singleton class, for example NewsManager, and keep one list for all news, one for favourite news, and use favourite list in the ListView2 adapter
Post a Comment for "Android - Add An Item From One Listview To Another Listview?"