sdex / ActivityManager

Launch any application activity
Apache License 2.0
604 stars 34 forks source link

How I can access "Running services" in "Developer options" activity? #31

Closed hamedsbt closed 1 year ago

hamedsbt commented 1 year ago

How I can access in "Developer options" -> "Running services" activity?

Screenshot_20230308-000137_Settings

sdex commented 1 year ago

You need to dig into the Settings app source code. The SettingsActivity class accepts the EXTRA_SHOW_FRAGMENT argument, where you can specify the fragment name. Maybe there is a fragment or an action to open the list you need.

Galbert01 commented 1 year ago

Hey can you redo my whole font back to factory no extension or data that's saved on my accounts but passwords photos screenshots docs and calender is all I want because it's like my phone got copied to another device and now I'm felling like my device has been hacked please help

On Thu, 9 Mar 2023, 6:56 am Yuriy Mysochenko, @.***> wrote:

You need to dig into the Settings app source code https://android.googlesource.com/platform/packages/apps/Settings/. The SettingsActivity class accepts the EXTRA_SHOW_FRAGMENT https://android.googlesource.com/platform/packages/apps/Settings/+/master/src/com/android/settings/SettingsActivity.java#104 argument, where you can specify the fragment name. Maybe there is a fragment or an action to open the list you need.

— Reply to this email directly, view it on GitHub https://github.com/sdex/ActivityManager/issues/31#issuecomment-1460597041, or unsubscribe https://github.com/notifications/unsubscribe-auth/A5THL6LIICDNZTDPWUVITILW3DB4LANCNFSM6AAAAAAVS6LCJM . You are receiving this because you are subscribed to this thread.Message ID: @.***>

hamedsbt commented 1 year ago

You need to dig into the Settings app source code. The SettingsActivity class accepts the EXTRA_SHOW_FRAGMENT argument, where you can specify the fragment name. Maybe there is a fragment or an action to open the list you need.

I'm using LOS18 and I'm not professional Android user, I use shell command: dumpsys activity activities | grep mResumedActivity while Developer options/Running services is running and result is: mResumedActivity: ActivityRecord{9306f2e u0 com.android.settings/.SubSettings t1550} So could you help me more to use it please? Thank you!

sdex commented 1 year ago

You need to dig into the Settings app source code. The SettingsActivity class accepts the EXTRA_SHOW_FRAGMENT argument, where you can specify the fragment name. Maybe there is a fragment or an action to open the list you need.

I'm using LOS18 and I'm not professional Android user, I use shell command: dumpsys activity activities | grep mResumedActivity while Developer options/Running services is running and result is: mResumedActivity: ActivityRecord{9306f2e u0 com.android.settings/.SubSettings t1550} So could you help me more to use it please? Thank you!

There is no specific activity to open. SubSettings is a generic activity that contains fragments. As I said, need to check the source code, but most likely it's impossible.