我正在尝试向 Wifi Manager 活动添加返回和下一步按钮。
http://developer.android.com/reference/android/provider/Settings.html#ACTION_WIFI_SETTINGS
在之前的请求中,建议使用以下额外内容
Intent intent = new Intent(ACTION_WIFI_SETTINGS);
intent.putExtra("extra_prefs_show_button_bar", true);
getActivity().startActivityFromFragment(this,intent, 0);
但我认为最新的 android API 不支持这一点。
有什么办法吗?我可以将 WifiManager 包装在自定义布局中并自己添加按钮吗?
非常感谢!