我试图在片段中创建一个ImageView,它将引用我在片段的XML中创建的ImageView元素.但是,findViewById方法仅在我扩展Activity类时才有效.无论如何,我还可以在片段中使用它吗?
public class TestClass extends Fragment {
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
ImageView imageView = (ImageView)findViewById(R.id.my_image);
return inflater.inflate(R.layout.testclassfragment, container, false);
}
}
findViewById方法有一个错误,表明该方法是未定义的.
解决方法:
使用getView()或View参数实现onViewCreated方法.它返回片段的根视图(由onCreateView()方法返回的视图).有了这个,你可以调用findViewById().
@Override
public void onViewCreated(View view, @Nullable Bundle savedInstanceState) {
ImageView imageView = (ImageView) getView().findViewById(R.id.foo);
// or (ImageView) view.findViewById(R.id.foo);
由于getView()仅在onCreateView()之后工作,因此不能在片段的onCreate()或onCreateView()方法中使用它.