start com.android.settings/com.android.settings.SubSettings activity

1. get class name:

adb shell

shell@android:/mnt/sdcard/books $ dumpsys window windows >dump.txt

grep "focus"

  mFocusedApp=AppWindowToken{420a5df8 token=Token{420a5c00 ActivityRecord{420a5ac8 com.android.settings/.SubSettings}}}
  mInputMethodTarget=Window{420fc320 com.android.settings/com.android.settings.SubSettings paused=false}

or

adb shell "dumpsys window windows | grep -E ‘mCurrentFocus|mFocusedApp‘"

http://*.com/questions/11201659/whats-android-adb-shell-dumpsys-tool-and-its-benefits


2. start activity

            Intent intent=new Intent("/");
            ComponentName cn=new ComponentName("com.android.settings", "com.android.settings.profile.ProfileSettings");
//            ComponentName cn=new ComponentName("com.android.settings", ".profile.ProfileSettings");
            intent.setComponent(cn);
            startActivityForResult(intent, 1);


start com.android.settings/com.android.settings.SubSettings activity,布布扣,bubuko.com

start com.android.settings/com.android.settings.SubSettings activity

上一篇:Apple Swift 中文教程 快速参考 基本语法 更新中...


下一篇:Android URI简介