Given the definition below. how would you get access a TextView with an ID of text_home contained in thr layout file of a Fragment class?
a. root.find(R.id.text_home)
b. findViewById(R.id.text_home)
c. root.getById(R.id.text_home)
d. root.findViewById(R.id.text_home)