Hola compañeros.
¿Algun me pude dar una ayudadita?
Lo que pasa es que quiero trabajar con este, pero no encuentro información de Horizontal Scroll View
Se utilizar un ScrollView pero este no lo logro comprender como funciona.
B4X:
Sub Globals
Private Button1 As Button
Private Button2 As Button
Dim hsc As HorizontalScrollView
Dim Panel As Panel
End Sub
Sub Activity_Create(FirstTime As Boolean)
Activity.LoadLayout("main3")
hsc.Initialize
Pero no se como inicializarlo, el ejemplo de marca.. hsc.Initialize - Width as Int, EventeName as String
Pero.. saben lo que esto significa o tiene algún ejemplo de como inicializar, o algún de ejemplo de alguna app sencilla que utilize esto?
Gracias compañeros.
If the HorizontalScrollView is defined in the layout you should not initialize it in the code !
In the Initialize method: Width is the with of the internal Panel of the scrollview, same as HorizontalScrollView1.Panel.Width. EventName is the generic name for the events of the HorizontalScrollView same as for all other views.
The principle is the same as for vertical ScrollViews.
Como bien te ha dicho Klaus, si el HorizontalScrollView (hsc) lo has creado en el layout "main3", no hace falta que lo inicialices en el Sub Activity_Create.
Si no lo has creado, lo inicializas con el ancho del panel interno, y el nombre del evento que quieras darle hsc.Initialize(AnchoPanelInterno,"NombreEvento"). Si ya has trabajado con el vertical ScrollViews, este es lo mismo, salvo que trabaja en horizontal.