在我的应用程序中,我有一个滚动视图,其中列出了 n 个数据。有两个按钮,一个名为 UP,位于滚动视图上方,另一个名为 DOWN,位于滚动视图下方。使用UP and DOWN buttons the list of views can be scrolled.
当scroll bar is in top the Up button will be invisible
和 当 时,我已经使用该方法scroll bar reaches the bottom the DOWN button will become invisible
为此编写了逻辑。getScrollX()
现在我的问题是当数据很少时,例如 3, the scroll bar will not be visible and the layout cannot be scrolled, in such a case both the UP and DOWN buttons need to be in invisible
. 如何做到这一点,请给我一个方法?