/*标签:fragment,中传值,detail,bundle,activity,new,fragmentManager,fragmentTransaction From: https://www.cnblogs.com/jiazq/p/17299811.html
//创建 Fragment 实例
detail fragment = new detail();
//构建 Bundle
Bundle bundle = new Bundle();
//设置数据
bundle.putString("account", this.account);
//绑定 Fragment
fragment.setArguments(bundle);
FragmentManager fragmentManager = getSupportFragmentManager();
FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();
fragmentTransaction.replace(R.id.nav_taskframent, fragment);
fragmentTransaction.commit();
*/