Start Activity Android with class name

a 夏天 提交于 2019-12-01 15:28:50

You can use this snippet to open Settings Activity :

Intent intent=new Intent();
intent.setComponent(new ComponentName("com.android.settings", "com.android.settings.Settings"));
startActivity(intent);

If you do not know what Activity you have to open,you can find it's name and it's package name as I mentioned here.

There are many action constants in the Settings class that can be used to create an intent that will start an activity for the provided sub-Setting or simply launch the Settings app depending on the action.

For example:

intent = new Intent(Settings.ACTION_SETTINGS); // ACTION_SETTINGS will start the Settings app

intent = new Intent(Settings.ACTION_WIFI_SETTINGS); // ACTION_WIFI_SETTINGS will show the WiFi settings
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!