I would like to know why sometime getActivity.findViewById() works and sometimes it returns null ?
And with myView.findViewById() it works ?
Thanks in advance :)
I would like to know why sometime getActivity.findViewById() works and sometimes it returns null ?
And with myView.findViewById() it works ?
Thanks in advance :)
I'm supposing you are in a Fragment and calling getActivity.findViewById().
Looking at the source code, Activity.findViewById() call findViewById() on the Window which calls findViewById() on its decor view.
So when you call getActivity.findViewById() you're searching for a subview of your decor view.
If you call findViewById() directly on a view, you're looking for a subview from the given View.
So if view is not in your decor view subviews, getActivity.findViewById() will return null while view.findViewById() will works.
findViewById
is not a global search for aView
. It only looks in specific places. If noView
is specified (as in your myView.findViewById() example)findViewById
will look in the content view for theActivity
orFragment
you are calling it from. Otherwise it will look within the specified view.You will get null if you are looking for the view in the wrong place - i.e. what you are looking for is not in the place you're searching.
Here's an example: if you're using a
ListView
whose items you are controling with anAdapter
you would need to callfindViewbById
on the inflated layout for the indivdual items in order to set their child views. Why? Because aListView
starts out empty. If you calledfindViewById
within the generalListActivity
you would be looking for list item fields in the wrong place, i.e. the content view for the activity - not the layout that will eventually be inflated for each list item.