Android Question Scrollview and Customlistview

Alan dos Santos

Member
Licensed User
Longtime User
Hello, when you click the "entra" button and click the "voltar para bugar" button twice it will stretch the entire layout. How to fix it? Is there another way to make the whole screen slide along with the clv?


File Download: desafiosociais.com/bug.zip
I could not append here.

Sorry my tradutor google.
 

Levit

Member
Licensed User
Longtime User
alan, call the "bug" routine only once.
try this:

<CODE>

Sub Activity_Create(FirstTime As Boolean)
Activity.LoadLayout("entra")
bug
End Sub

Sub ENTRA_Click
ScrollView1.Visible = True
Panel1.Visible = True
End Sub

</CODE>
 
Upvote 0
Top