> For the complete documentation index, see [llms.txt](https://documentation.pushly.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://documentation.pushly.com/pushly-ja/integration/implementation-steps/android/sdk-kotlin-java/akutibiti.md).

# アクティビティ追跡

## 概要

PushSDK は、購読者がアプリケーション内で閲覧しているコンテンツの種類を追跡できるメソッドを提供します。この情報はその後、Pushly プラットフォームで、訪問回数と訪問の新しさに基づくタグ付きの特定の URL または画面を訪問した購読者のコホートを作成するために使用できます。

例: 「過去 30 日間に少なくとも 4 回、"Astrology" のタグが付いたページ/画面を訪問した購読者」

## メソッド

### UserProfile.trackActivity

キーワード/タグのメタデータとともに、訪問した URL または画面を追跡するには:

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

```kotlin
PushSDK.UserProfile.trackActivity(name="myapp://dashboard", tags=listOf("my-tag"))
```

{% endtab %}

{% tab title="Java" %}

```java
PushSDK.UserProfile.trackActivity("myapp://dashboard", List.of("my-tag"));
```

{% endtab %}
{% endtabs %}

また、提供するタグがない場合は `tags` パラメータを省略します:

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

```kotlin
PushSDK.UserProfile.trackActivity(name="myapp://sports/article-1")
```

{% endtab %}

{% tab title="Java" %}

```java
PushSDK.UserProfile.trackActivity("https://pushly.com/article-1");
```

{% endtab %}
{% endtabs %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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://documentation.pushly.com/pushly-ja/integration/implementation-steps/android/sdk-kotlin-java/akutibiti.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.
