Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialJery Althaf
5,818 PointsSwiperefreshlayout challenge. Task2
mRefreshLayout=(SwipeRefreshLayout)rootView.findViewById(R.id.refreshLayout);
shows compile error.
"/MainActivity.java:12: error: cannot find symbol mRefreshLayout=(SwipeRefreshLayout)rootView.findViewById(R.id.refreshLayout); ^ symbol: class mRefreshLayout location: class MainActivity ./MainActivity.java:12: error: cannot find symbol mRefreshLayout=(SwipeRefreshLayout)rootView.findViewById(R.id.refreshLayout); ^ symbol: variable rootView location: class MainActivity 3 errors"
1 Answer
Jesse Gravenor
27,272 PointsChaining the rootView is not necessary in this case because this is being done in the onCreate method of an Activity, as opposed to the onCreateView of a Fragment, as in the video exersize. Ben hints at this in the video at about 5:12.