Compdigitec Labs

Archive for November, 2013

How to get the classic Firefox look back

Wednesday, November 20th, 2013

While all the latest dynamic changes (such as the new Australis UX) may be interesting, you may be looking to get that classic Firefox look back for productivity reasons. Here is a list of recommended addons to restore your Firefox back to something to do work with: Classic Theme Restorer – Removes many annoying Australis […]

Fixing IllegalStateException: The content of the adapter has changed but ListView did not receive a notification

Saturday, November 16th, 2013

Recently while working with a custom BaseAdapter in ListView, I came across this error: this.notifyDataSetChanged() was already being called, so that couldn’t have been the problem. The solution? If registerDataSetObserver() and unregisterDataSetObserver() are going to be overridden, ensure that the superclass’ methods are being called too. If you forget to call them, then when Android […]