fragment跳转fragment未生效?
wzc520pyfm opened this issue · 2 comments
wzc520pyfm commented
fragment1:
@route("test")
public class SetupFragment extends Fragment {....}
fragment2:
@route("my")
public class MyFragment extends Fragment {
....
@OnClick(R.id.set_up)
public void onClick(View v) {
Toast.makeText(mContext, "点击了", Toast.LENGTH_SHORT).show(); // 可以正常执行
Router.build("test").go(this); // 但这里没有成功跳转
}
}
我跳转activity是可以成功跳转的, 但是fragment不行.
请帮帮我
chenenyu commented
fragment不能直接跳转,要先获取,然后自己用FragmentManager跳转
wzc520pyfm commented
懂了, 感谢