带有返回键的跳转:
自开发APP为Lancher,不带物理或者虚拟按键栏,但会跳转到部分系统设置界面
Intent intent = new Intent(Settings.ACTION_WIFI_SETTINGS);
//是否显示返回按钮
intent.putExtra("extra_prefs_show_button_bar", true);
intent.putExtra("extra_prefs_set_back_text", "返回");
startActivity(intent);
1653

被折叠的 条评论
为什么被折叠?



