B4A Library [B4X] [XUI] AS AppSummary

This library is used to describe the 3 or 4 most important functions of the app to the user the first time they use it, as an onboarding measure.

The library can also be used as an update log if you have released a major update and want to inform the user which new things are now in the app.

I spend a lot of time in creating views, like this and to create a high quality view cost a lot of time. If you want to support me and further views, then you can do it here by Paypal or with a coffee.


Examples
With Icons:
    AS_AppSummary1.SetTitleText("Welcome to"," Parcel ","!")
 
    AS_AppSummary1.AddItem("Supported worldwide","With more than 320 delivery agents supported, you can be sure that your next delivery will be tracked via Parcel.",AS_AppSummary1.FontToBitmap(Chr(0xE894),True,35,AS_AppSummary1.ItemIconProperties.Color),"")
    AS_AppSummary1.AddItem("Powerful functions","Daily payers, barcode scanners, card support and many other functions make tracking much easier.",AS_AppSummary1.FontToBitmap(Chr(0xF02A),False,35,AS_AppSummary1.ItemIconProperties.Color),"")
    AS_AppSummary1.AddItem("Push notifications","With a Premium subscription, receive push notifications when there is news about the delivery.",AS_AppSummary1.FontToBitmap(Chr(0xE7F4),True,35,AS_AppSummary1.ItemIconProperties.Color),"")
 
    AS_AppSummary1.ConfirmButtonText = "Start using Parcel"
 
    AS_AppSummary1.Refresh
B4X:
    AS_AppSummary1.SetTitleText("Welcome to"," Parcel ","!")
 
    Dim Item_Feature1 As AS_AppSummary_Item : Item_Feature1.Initialize
    Item_Feature1.Name = "Supported worldwide"
    Item_Feature1.Description = "With more than 320 delivery agents supported, you can be sure that your next delivery will be tracked via Parcel."
    Item_Feature1.Icon = AS_AppSummary1.FontToBitmap(Chr(0xE894),True,35,AS_AppSummary1.ItemIconProperties.Color)
    AS_AppSummary1.AddItemAdvanced(Item_Feature1)
 
    Dim Item_Feature2 As AS_AppSummary_Item : Item_Feature2.Initialize
    Item_Feature2.Name = "Powerful functions"
    Item_Feature2.Description = "Daily payers, barcode scanners, card support and many other functions make tracking much easier."
    Item_Feature2.Icon = AS_AppSummary1.FontToBitmap(Chr(0xF02A),False,35,AS_AppSummary1.ItemIconProperties.Color)
    AS_AppSummary1.AddItemAdvanced(Item_Feature2)
 
    Dim Item_Feature3 As AS_AppSummary_Item : Item_Feature2.Initialize
    Item_Feature3.Name = "Push notifications"
    Item_Feature3.Description = "With a Premium subscription, receive push notifications when there is news about the delivery."
    Item_Feature3.Icon = AS_AppSummary1.FontToBitmap(Chr(0xE7F4),True,35,AS_AppSummary1.ItemIconProperties.Color)
    AS_AppSummary1.AddItemAdvanced(Item_Feature3)
 
    AS_AppSummary1.ConfirmButtonText = "Start using Parcel"
 
    AS_AppSummary1.Refresh
AS_AppSummary
Author: Alexander Stolte
Version: 2.00
  • AS_AppSummary
    • Events:
      • ConfirmButtonClick
      • CustomDrawItem (Item As AS_AppSummary_Item, ItemViews As AS_AppSummary_ItemViews)
      • ItemClicked (Item As AS_AppSummary_Item)
    • Fields:
      • mBase As B4XView
      • Tag As Object
    • Functions:
      • AddItem (Name As String, Description As String, Icon As B4XBitmap, Value As Object) As AS_AppSummary_Item
      • AddItemAdvanced (Item As AS_AppSummary_Item)
      • Base_Resize (Width As Double, Height As Double)
      • ClearItems
      • DesignerCreateView (Base As Object, Lbl As Label, Props As Map)
        Base type must be Object
      • FontToBitmap (text As String, IsMaterialIcons As Boolean, FontSize As Float, color As Int) As B4XBitmap
      • GetItemAt (Index As Int) As AS_AppSummary_Item
      • GetItemViews (Value As Object) As AS_AppSummary_ItemViews
        Gets the item views for a value
      • GetItemViews2 (Index As Int) As AS_AppSummary_ItemViews
        Gets the item views for a index
      • Initialize (Callback As Object, EventName As String)
      • Refresh
      • SetTitleText (Text1 As String, ColoredText As String, Text2 As String)
    • Properties:
      • BackgroundColor As Int
        Call Refresh if you change something
      • ConfirmButton As B4XView [read only]
      • ConfirmButtonColor As Int
        Call Refresh if you change something
      • ConfirmButtonText As String [write only]
      • ConfirmButtonTextColor As Int
        Call Refresh if you change something
      • HapticFeedback As Boolean
      • ItemDescriptionTextColor As Int
        Call Refresh if you change something
      • ItemIconProperties As AS_AppSummary_ItemIconProperties [read only]
        Call Refresh if you change something
      • ItemNameTextColor As Int
        Call Refresh if you change something
      • Theme As AS_AppSummary_Theme [write only]
      • Theme_Dark As AS_AppSummary_Theme [read only]
      • Theme_Light As AS_AppSummary_Theme [read only]
      • ThemeChangeTransition As String
        Fade or None
      • TitleColoredTextColor As Int
        Call SetTitleText if you change this property
      • TitleGap As Float
        Gap between list and title
        Default: 20dip
        Call Refresh if you change something
      • TitleTextColor As Int
        Call SetTitleText if you change this property
      • TitleTop As Float
        Default: 100dip
        Call Refresh if you change something
Changelog
  • 1.00
    • Release
  • 1.01
    • Add AddItemAdvanced
    • Add get ConfirmButton
    • Title Text BugFix
  • 2.00 (read more)
    • BugFixes
    • Breaking Change - Add Parameter "Value" to AddItem
    • Changed the items base to xCustomListView
      • You can now add as many items as you like, it is scrollable
    • Add get and set TitleTop
    • Add get and set TitleGap - Gap between list and title
    • Add set Theme
    • Add get Theme_Dark
    • Add get Theme_Light
    • Add Designer Property ThemeChangeTransition
      • Default: Fade
    • Add GetItemAt
    • Add Event ItemClicked
    • Add Designer Property HapticFeedback
      • Default: True
    • Add Event CustomDrawItem
    • Add Type AS_AppSummary_ItemViews
    • Add GetItemViews - Gets the item views for a value
    • Add GetItemViews2 - Gets the item views for a index
  • 2.01
    • New Designer Property ItemBackground
      • Default: None
      • Card - The item is displayed as a card with round borders
    • New Type AS_AppSummary_CardProperties
    • BugFix Title is now multiline
    • BugFixes and Improvements
Have Fun
 

Attachments

  • AS AppSummary Example.zip
    178.1 KB · Views: 22
  • AS_AppSummary.b4xlib
    6.9 KB · Views: 6
Last edited:

asales

Expert
Licensed User
Longtime User
Another great lib. Thanks!

Can I scroll the information in the screen?
I tried to put more items, but is I can't scroll.

 

Alexander Stolte

Expert
Licensed User
Longtime User
Can I scroll the information in the screen?
No, because this page should be compact and concise. You can display several AS_AppSummary views one after the other if you really want to display so many things to the user.
 

Theera

Well-Known Member
Licensed User
Longtime User
Your library is so cool.But I have tried with Thai language,it has the problem about manage text, please see my picture.
 

Attachments

  • Screenshot_20240107_111107.png
    165.4 KB · Views: 152

asales

Expert
Licensed User
Longtime User
Your library is so cool.But I have tried with Thai language,it has the problem about manage text, please see my picture.
The font size of the phone is the default?
I see this behaviour when the font is bigger.
 

Theera

Well-Known Member
Licensed User
Longtime User
The font size of the phone is the default?
I see this behaviour when the font is bigger.
I use default font. But Thai language has 4 levels of line ( i.e. " สัมฤทธิ์ผล " )
 

Andrew (Digitwell)

Well-Known Member
Licensed User
Longtime User
I use the MeasureMultilineTextHeight function from the StringUtils. There is nothing I can fix.
There is something you can do.
See this :
You need to setFallBackLineSpacing to true. This will solve the problem.
 

Alexander Stolte

Expert
Licensed User
Longtime User
Update
  • 2.00
    • BugFixes
    • Breaking Change - Add Parameter "Value" to AddItem
    • Changed the items base to xCustomListView
      • You can now add as many items as you like, it is scrollable
    • Add get and set TitleTop
    • Add get and set TitleGap - Gap between list and title
    • Add set Theme
    • Add get Theme_Dark
    • Add get Theme_Light
    • Add Designer Property ThemeChangeTransition
      • Default: Fade
    • Add GetItemAt
    • Add Event ItemClicked
    • Add Designer Property HapticFeedback
      • Default: True
    • Add Event CustomDrawItem
    • Add Type AS_AppSummary_ItemViews
    • Add GetItemViews - Gets the item views for a value
    • Add GetItemViews2 - Gets the item views for a index
Changed the items base to xCustomListView
You can now add as many items as you want, the item base is now a xCustomListView and can be scrolled if the items are more than the screen size.

TitleTop
By default, the title is now at a height of 100dip. The list of items starts below the title, depending on the value specified for the TitleGap property. So you can now determine the height of the title yourself

TitleGap
This property is simply the space between the title and the list, so that it is not so close together.
By default, a value of 20dip is set.

Theming
as in almost all of my views, there is now a built-in dark/light mode that you can easily customize yourself
B4X:
AS_AppSummary1.Theme = AS_AppSummary1.Theme_Light
B4X:
AS_AppSummary1.Theme = AS_AppSummary1.Theme_Dark

CustomDrawItem
The event is triggered as soon as an item is built, it contains all views that are in the item and can be customized to your own needs.
A more detailed tutorial will follow later.

GetItemViews and GetItemViews2
As in the CustomDrawItem event, but you can call up the views for an item at any time.
B4X:
AS_AppSummary1.GetItemViews2(1).NameLabel.Text = "Test"
 

Alexander Stolte

Expert
Licensed User
Longtime User
Update
  • 2.01
    • New Designer Property ItemBackground
      • Default: None
      • Card - The item is displayed as a card with round borders
    • New Type AS_AppSummary_CardProperties
    • BugFix Title is now multiline
    • BugFixes and Improvements
ItemBackground
You can now display the items as a “card” (left picture) for reference on the right picutre, the same content with "None"



If you want to adjust the card properties:
B4X:
    AS_AppSummary1.CardProperties.CornerRadius = 15dip
    AS_AppSummary1.CardProperties.TextGap = 10dip
    AS_AppSummary1.CardProperties.BackgroundColor = xui.Color_Red
 
Cookies are required to use this site. You must accept them to continue using the site. Learn more…