viewpager获取button
时间: 2023-09-17 16:13:41 浏览: 79
viewpager指针
要获取 `ViewPager` 中的 `Button`,你需要先获取当前显示的 `ViewPager` 子视图,然后在子视图中查找 `Button`。可以使用 `ViewPager` 的 `getChildAt()` 方法来获取当前显示的子视图,然后使用 `findViewById()` 方法在子视图中查找 `Button`。下面是一个示例代码:
```java
// 获取当前显示的子视图
View currentView = viewPager.getChildAt(viewPager.getCurrentItem());
// 在子视图中查找 Button
Button button = currentView.findViewById(R.id.button_id);
```
在上面的代码中,`R.id.button_id` 应该替换为你想要查找的 `Button` 的资源 ID。
阅读全文