无法使用导航情节提要在片段中添加按钮以从一个片段跳到另一个片段



我正试图在片段页面中添加一个按钮,使用安卓工作室的导航故事板的方法从一个片段跳到另一个片段。然而,在Mainfragment.java中,我的按钮id无法解析,它无法识别我的按钮标识,我不知道为什么。请帮忙!

public MainFragment() {
// Required empty public constructor
}

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
return inflater.inflate(R.layout.fragment_main, container, false);

}
@Override
public void onViewCreated(@NonNull View view, @Nullable Bundle savedInstanceState) {
super.onViewCreated(view, savedInstanceState);
Button goToBtn = (Button) this.findViewById(R.id.goToBtn);
goToBtn.setOnClickListener(Navigation.createNavigateOnClickListener(R.id.toAccount, null));

}
}

对于Mainfragment.java中的上述代码,findViewById为红色

线下的变化

Button goToBtn = (Button) this.findViewById(R.id.goToBtn);

Button goToBtn = (Button) view.findViewById(R.id.goToBtn);

相关内容

  • 没有找到相关文章

最新更新