The Android activity name for the Settings > Modes feature is typically found in the system Settings app, and the relevant activity is often:
com.android.settings.Settings$ModesSettingsActivity
However, based on the most recent and authoritative sources, the exact activity name can vary by Android version and manufacturer. For example, on some devices, the Modes feature may be accessed via:
com.android.settings.Settings$ModesAndRoutinesDashboardActivity
or simply:
com.android.settings.ModesSettingsActivity
If you are developing or debugging, you can confirm the exact activity name for your specific device and Android version by using the adb shell dumpsys window windows command or by inspecting the Settings app's manifest or source code directly.
Would you like help finding the activity name for a specific device or Android version?