Android task flow app?

Asked

Viewed 30 times

-1

You can create an application that does a "path" for the user?

For example, when running the application it calls an Intent pro user set the time and the application "waits" the user events to go to another task, and so following a path defined by the application.

If so, is there a name for it so I can find out more about?

  • It looks like you’re talking about a Wizard. It would then be a Wizard application or something like that. Would that be it?

  • More or less, something similar to a "Guide" that you have in some apps, but using Android’s own services. My main focus is on automation, running an app in the background that does pre-defined paths for the user. I’m starting to think it’s not possible hehe

1 answer

0

Android comes increasingly limiting your app’s action to the scope of your sandbox. This increases security for the user.

In case you wait to set the hours, I believe it is not possible, but there are some Broadcasts that the system sends you, such as changing to airplane mode, battery status. You can check some here: https://developer.android.com/reference/android/content/Intent#constants_2

This was the best tutorial I found explaining how to listen to these Broadcasts https://code.tutsplus.com/pt/tutorials/android-from-scratch-understanding-android-broadcasts--cms-27026

Browser other questions tagged

You are not signed in. Login or sign up in order to post.