Can something like this be done in AS Settings (I'm talking about the image)? Do I need to use AS_Settings1_CustomDrawProperty? I can't seem to find an example on how to do this. Nothing should happen when you click the image, it's just there for decorative reasons.
Private Sub AS_Settings1_CustomDrawCustomProperty(CustomProperty As AS_Settings_CustomDrawCustomProperty)
Select CustomProperty.Property.PropertyName
Case "PremiumButton"
CustomProperty.BackgroundPanel.LoadLayout("frm_SettingsProperty_PremiumButton")
End Select
End Sub
https://www.b4x.com/android/forum/threads/b4x-xui-as-settings.147435/ With this property you can add your own view or layout In the following example, I add a B4XImageView to a group and the B4XBreadCrumb comes outside the group Example AS_Settings1.MainPage.AddGroup("Group1","Group")...