I understand, and can not get a touch in any way?
My problem is that when people move the scrollview in the chat window, and click button down, it does not work until the stop scroll
Im try, but that is no problem, the button or panel always take a event when push.
The problem are when sv are moving... can't jump to end.... i show part of code from class where are this function:
B4X:
Public Sub jumptoend
DoEvents
sv.ScrollToNow(5000000)
DoEvents
sv.SendToBack
End Sub
Sub SV_ScrollChanged(Position As Int)
Dim espaciopix As Int = 150dip
If sv.Height + Position + espaciopix >= sv.Panel.Height Then
'Log("bottom")
finalchat=True
CallSubDelayed2(CallBack,"showicondown",False)
Else
finalchat=False
CallSubDelayed2(CallBack,"showicondown",True)
End If
End Sub