Speak now
Please Wait Image Converting Into Text...
Embark on a journey of knowledge! Take the quiz and earn valuable credits.
Challenge yourself and boost your learning! Start the quiz now to earn credits.
Unlock your potential! Begin the quiz, answer questions, and accumulate credits along the way.
Course Queries Syllabus Queries 2 years ago
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.
Turn Your Knowledge into Earnings.
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
import android.os.Bundle; import android.support.annotation.Nullable; import android.support.v4.app.Fragment; import android.support.v7.widget.LinearLayoutManager; import android.support.v7.widget.RecyclerView; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import com.bignerdranch.expandablerecyclerview.Model.ParentObject; import com.blipclap.engineering_solution.Adapter.adapter; import com.blipclap.engineering_solution.Models.TitleChild; import com.blipclap.engineering_solution.Models.TitleCreator; import com.blipclap.engineering_solution.Models.TitleParent; import java.util.ArrayList; import java.util.List; public class SYFragment extends Fragment { RecyclerView recyclerView; @Override public void onSaveInstanceState(Bundle outState) { super.onSaveInstanceState(outState); ((adapter)recyclerView.getAdapter()).onSaveInstanceState(outState); } @Override public void onCreate( Bundle savedInstanceState) { super.onCreate(savedInstanceState); recyclerView =(RecyclerView)findViewById(R.id.recyclerview); recyclerView.setLayoutManager(new LinearLayoutManager(getActivity())); adapter adapter =new adapter(getActivity(),initData()); adapter.setParentClickableViewAnimationDefaultDuration(); adapter.setParentAndIconExpandOnClick( REPLY 0 views 0 likes 0 shares Facebook Twitter Linked In WhatsApp
findViewById is not a Fragment method so it cannot be resolved in its onCreate. You cannot do like in an Activity.
findViewById
You have to use it in your onCreateView or onViewCreated methods, and you have to call it on the view you inflated.
onCreateView
onViewCreated
For example:
@Override public void onViewCreated(View view, @Nullable Bundle 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(new LinearLayoutManager(getActivity())); adapter adapter =new adapter(getActivity(),initData()); adapter.setParentClickableViewAnimationDefaultDuration(); adapter.setParentAndIconExpandOnClick(true); recyclerView.setAdapter(adapter) }
Or..
@Nullable @Override public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) { //returning our layout file //change R.layout.yourlayoutfilename for each of your fragments">fragments View 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.
Course Queries 4 Answers
Course Queries 5 Answers
Course Queries 1 Answers
Course Queries 3 Answers
Ready to take your education and career to the next level? Register today and join our growing community of learners and professionals.