Posted on 16 Aug 2022, this text provides information on Syllabus Queries related to Course Queries. Please note that while accuracy is prioritized, the data presented might not be entirely correct or up-to-date. This information is offered for general knowledge and informational purposes only, and should not be considered as a substitute for professional advice.
findViewById is not a Fragment method so it cannot be resolved in its onCreate. You cannot do like in an Activity.
You have to use it in your onCreateView or onViewCreated methods, and you have to call it on the view you inflated.
For example:
@Overridepublicvoid onViewCreated(View view,@NullableBundle savedInstanceState){super.onViewCreated(view, savedInstanceState);//you can set the title for your toolbar here for different fragments">fragments different titles
getActivity().setTitle("Syllabus");
recyclerView =(RecyclerView) view.findViewById(R.id.recyclerview);
recyclerView.setLayoutManager(newLinearLayoutManager(getActivity()));
adapter adapter =new adapter(getActivity(),initData());
adapter.setParentClickableViewAnimationDefaultDuration();
adapter.setParentAndIconExpandOnClick(true);
recyclerView.setAdapter(adapter)}
Or..
@Nullable@OverridepublicView onCreateView(LayoutInflater inflater,@NullableViewGroup container,@NullableBundle savedInstanceState){//returning our layout file//change R.layout.yourlayoutfilename for each of your fragments">fragmentsView rootView = inflater.inflate(R.layout.fragment_sy, container,false);
recyclerView =(RecyclerView) rootView.findViewById(R.id.recyclerview);...return rootView;}
No matter what stage you're at in your education or career, TuteeHUB will help you reach the next level that
you're aiming for. Simply,Choose a subject/topic and get started in self-paced practice
sessions to improve your knowledge and scores.
manpreet
Best Answer
2 years ago
error findViewById(int) cannot resolve method
trying to achieve in fragment
A custom RecyclerView which allows for an expandable view to be attached to each ViewHolder
Is there a way i could click operation in expanded view