# 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.

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


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://the-city.gitbook.io/docs/android/lazy-load.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
