This library will create a Sliding Dashboard.
Requirements:
- B4A 2.5x.
- The Dashboard library.
- Copy the DashboardPulltab.png to your assets directory.
How to install:
- Copy the SlidingDashboard.jar and SlidingDashboard.xml to your additional libraries directory.
How to use:
Notes:
- The tiles added will have the same size, this is due to the way the dashboard works.
- This library supports up to 20 tiles (graphics only).
Screenshots:
-
Requirements:
- B4A 2.5x.
- The Dashboard library.
- Copy the DashboardPulltab.png to your assets directory.
How to install:
- Copy the SlidingDashboard.jar and SlidingDashboard.xml to your additional libraries directory.
How to use:
B4X:
'Initialize the library
Dim Dashboard As SlidingDashboard
'Create the SlidingDashboard
Dashboard.Initialize(Activity, Me, "TileClicked", Colors.White, "", 80%x, 80%y, "R")
'Add some tiles to the SlidingDashboard
Dashboard.AddTile(Image, 120dip, 100dip, 1)
Dashboard.AddTile(Image, 120dip, 100dip, 2)
Dashboard.AddTile(Image, 120dip, 100dip, 3)
'Capture the tile clicked
Sub TileClicked_Click(Tile As Object)
ToastMessageShow("Tile clicked = " & Tile, False)
End Sub
- The tiles added will have the same size, this is due to the way the dashboard works.
- This library supports up to 20 tiles (graphics only).
Screenshots: