我打算在Android(Android Studio)中显示带有免责声明消息的AlertDialog并禁用正按钮,我只想在用户完全向下滚动到消息末尾时启用该按钮(它是几行很长的消息)。 我发现如何禁用该按钮并再次启用它:
禁用:
((AlertDialog) dialog).getButton(AlertDialog.BUTTON_POSITIVE)
.setEnabled(false);
启用:
((AlertDialog) dialog).getButton(AlertDialog.BUTTON_POSITIVE)
.setEnabled(true);
但是如何检查用户是否已向下滚动到底部?
感谢您的帮助。