Is there any way to find a view by id within the scope of a fragment? I\'m using a series of fragments to render a specialized list. The fragments are loaded from a layout
private View myFragmentView; @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { myFragmentView = inflater.inflate(R.layout.myLayoutId, container, false); myView = myFragmentView.findViewById(R.id.myIdTag) return myFragmentView; }