# Working hours

The Working hours feature sorts the trips according to whether they are made during working hours. The trips are then automatically tagged as `BUSINESS` or `PERSONAL`.&#x20;

The feature also permits to set time slots during which the automatic starting mode is disabled, which offers more privacy control for the driver.&#x20;

You can start displaying that screen by calling the following method:

{% tabs %}
{% tab title="Kotlin" %}

```kotlin
DriveKitNavigationController.tripAnalysisUIEntryPoint?.startWorkingHoursActivity(context)
```

{% endtab %}

{% tab title="Java" %}

```java
TripAnalysisUIEntryPoint entryPoint = DriveKitNavigationController.INSTANCE.getTripAnalysisUIEntryPoint();
if (entryPoint != null) {
   entryPoint.startWorkingHoursActivity(this);
}
```

{% endtab %}
{% endtabs %}


---

# 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://docs.drivequant.com/trip-analysis/user-interface/android/working-hours.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.
