Home | 简体中文 | 繁体中文 | 杂文 | Github | 知乎专栏 | Facebook | Linkedin | Youtube | 打赏(Donations) | About
知乎专栏

5.5. 在 Fragment 跳转 Activity 同时携带 Intent 参数

		
	Intent intent = new Intent(getContext(), TestActivity.class);
	intent.putExtra("page", State.Discovery.page);
	startActivity(intent);