findViewById within fragment

前端 未结 5 1508
轮回少年
轮回少年 2020-12-13 19:14

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

5条回答
  •  粉色の甜心
    2020-12-13 19:59

    From inside the Fragment:

    getView().findViewById(R.id.your_view);
    

    From the enclosing Activity:

    getFragmentManager().findFragmentByTag("YourFragmentTag").getView().findViewById(R.id.your_view);
    

    or

    getFragmentManager().findFragmentById(R.id.your_fragment).getView().findViewById(R.id.your_view);
    

提交回复
热议问题