0

我在 FragmentActivity 中使用带有 FragmentPagerAdapter 的 ViewPager(说快五倍 - 我敢说:)

无论如何,我的东西显示正确,但我需要能够初始化我的视图。在片段之前,它很容易:为视图分配一个 id,然后使用 FindViewById - 但 FragmentPagerAdapter 会延迟加载视图(应该如此)。

我的问题:如何访问这些视图来初始化它们。

提前感谢您的帮助。

4

1 回答 1

1

How can I access those view to initialise them.

Use findViewById() in onCreateView(), onActivityCreated(), etc. of your fragment.

于 2012-09-04T22:25:22.883 回答