Lazy Load

Lazy Load is scheme that details place(Description, Phone, Address, Website) will be load when one place is open. When you press refresh button at grid view its only load Draft(name, main_image, lat, lng, last_update) from place.

This scheme use for handle large data, my estimate is data place more than 200 item. You can enable and disable this LAZY_LOAD from file data/AppConfig.java , default value is false.

public class AppConfig {
    . . .
    // if you place data more than 200 items please set TRUE
    public static final boolean LAZY_LOAD = false;
}