IT_Programming/Android_Java 347

[Android] Way to avoid using 'notifyDataSetChanged' when only one or two items are changed at Adapter.

출처: http://yhcting.tistory.com/m/post/310 When using Adapter (especially list), sometimes(actually very frequently) data of only one item(row) is changed. In this case, usually, changing one-under-lying data is easy. But, updating only one list item is different story. To update that item to the screen, - changing look-and-feel regarding changed item - easiest way is calli..