Android跳转系统页面带返回按钮

Android在跳转某些系统页面的时候,会要求设置返回按钮

Intent i = new Intent(Settings.ACTION_WIFI_SETTINGS);
i.putExtra("extra_prefs_show_button_bar", true);//是否显示button bar
i.putExtra("extra_prefs_set_next_text", "完成");
i.putExtra("extra_prefs_set_back_text", "返回");
context.startActivity(i);

给intent添加这三个属性就能定制化返回按钮,但是在跳到设置页面的时候是没有效果的

猜你喜欢

转载自blog.csdn.net/QhappyfishQ/article/details/126351037
今日推荐