Alexander Stolte Expert Licensed User Longtime User Mar 22, 2020 #41 giannimaione said: is there a scrollview property? Click to expand... look at the first site, there you can read the properties.
giannimaione said: is there a scrollview property? Click to expand... look at the first site, there you can read the properties.
Alexander Stolte Expert Licensed User Longtime User Mar 23, 2020 #43 giannimaione said: is there a scrollview property? how to solve ASTabMenu (vertical mode) when there are many .AddTab ; Click to expand... Look at this example.
giannimaione said: is there a scrollview property? how to solve ASTabMenu (vertical mode) when there are many .AddTab ; Click to expand... Look at this example.
Alexander Stolte Expert Licensed User Longtime User Mar 25, 2020 #44 It is the first version with badges, feedback is now important, especially with the variant where only text can be seen 1.05 Adds a short description about a property Add get and set Badge_Visible - shows or hide a badge on a tab Add get and set Badge_Height - set the size of the badge Add set Badge_Text - sets the badge number, set it to -1 to have only the color Add get Badge_getLabel - gets the badge label, to modify it to your own Add get and set Badge_Color - gets or sets a badge color Add set Badge_setVisibleEasy - shows the badge with all important parameters to save lines of code
It is the first version with badges, feedback is now important, especially with the variant where only text can be seen 1.05 Adds a short description about a property Add get and set Badge_Visible - shows or hide a badge on a tab Add get and set Badge_Height - set the size of the badge Add set Badge_Text - sets the badge number, set it to -1 to have only the color Add get Badge_getLabel - gets the badge label, to modify it to your own Add get and set Badge_Color - gets or sets a badge color Add set Badge_setVisibleEasy - shows the badge with all important parameters to save lines of code
mcqueccu Well-Known Member Licensed User Longtime User Mar 25, 2020 #45 How to I set the badge position like top, left, or right? Currently, it's at the left of my tab icon and I need it right top or right
How to I set the badge position like top, left, or right? Currently, it's at the left of my tab icon and I need it right top or right
Alexander Stolte Expert Licensed User Longtime User Mar 25, 2020 #46 mcqueccu said: Currently, it's at the left of my tab icon and I need it right top or right Click to expand... can you upload a image?
mcqueccu said: Currently, it's at the left of my tab icon and I need it right top or right Click to expand... can you upload a image?
Alexander Stolte Expert Licensed User Longtime User Mar 26, 2020 #48 mcqueccu said: Click to expand... and you need the badge over the icon and right of it? Hmm, i can implement it so you can choose: MIDDLE_LEFT,MIDDLE_RIGHT, TOP_LEFT or TOP_RIGHT
mcqueccu said: Click to expand... and you need the badge over the icon and right of it? Hmm, i can implement it so you can choose: MIDDLE_LEFT,MIDDLE_RIGHT, TOP_LEFT or TOP_RIGHT
Alexander Stolte Expert Licensed User Longtime User Mar 26, 2020 #49 1.06 Badge Bug Fixing Add get and set Badge_Gravity Add enums. for the Badge_Gravity Badge_MIDDLERIGHT Badge_MIDDLELEFT Badge_TOPRIGHT Badge_TOPMIDDLE Badge_TOPLEFT
1.06 Badge Bug Fixing Add get and set Badge_Gravity Add enums. for the Badge_Gravity Badge_MIDDLERIGHT Badge_MIDDLELEFT Badge_TOPRIGHT Badge_TOPMIDDLE Badge_TOPLEFT
Andrew (Digitwell) Well-Known Member Licensed User Longtime User Mar 26, 2020 #50 Hi, I am using bitmaps instead of font text for the images and the text is too close to the image. Is there a standard image size I should be using? The images are all 100pixels square B4X: BtmMenu.AddTab(Globals.gcol_panelback,"Home",LoadBitmap(File.DirAssets,"menu_home.png"),"") BtmMenu.AddTab(Globals.gcol_panelback,"Bookings",LoadBitmap(File.DirAssets,"menu_booking.png"),"") BtmMenu.AddTab(Globals.gcol_panelback,"Messages",LoadBitmap(File.DirAssets,"menu_messages.png"),"") BtmMenu.AddTab(Globals.gcol_panelback,"Account",LoadBitmap(File.DirAssets,"menu_account.png"),"")
Hi, I am using bitmaps instead of font text for the images and the text is too close to the image. Is there a standard image size I should be using? The images are all 100pixels square B4X: BtmMenu.AddTab(Globals.gcol_panelback,"Home",LoadBitmap(File.DirAssets,"menu_home.png"),"") BtmMenu.AddTab(Globals.gcol_panelback,"Bookings",LoadBitmap(File.DirAssets,"menu_booking.png"),"") BtmMenu.AddTab(Globals.gcol_panelback,"Messages",LoadBitmap(File.DirAssets,"menu_messages.png"),"") BtmMenu.AddTab(Globals.gcol_panelback,"Account",LoadBitmap(File.DirAssets,"menu_account.png"),"")
Alexander Stolte Expert Licensed User Longtime User Mar 26, 2020 #51 Andrew (Digitwell) said: Is there a standard image size I should be using? Click to expand... no, it's not your fault, it's my. I'll check it and make a update for it.
Andrew (Digitwell) said: Is there a standard image size I should be using? Click to expand... no, it's not your fault, it's my. I'll check it and make a update for it.
Jorge M A Well-Known Member Licensed User Longtime User Mar 26, 2020 #52 ? is not posible use LoadBitmapResize ? (not tested)
Andrew (Digitwell) Well-Known Member Licensed User Longtime User Mar 26, 2020 #53 Yes, it is but what size should I use?
Alexander Stolte Expert Licensed User Longtime User Mar 26, 2020 #54 Important Update 1.07 Icon Size is now smaller Badge Bug Fixing
Alexander Stolte Expert Licensed User Longtime User Mar 26, 2020 #55 Andrew (Digitwell) said: Yes, it is but what size should I use? Click to expand... you dont need a size, the view do it for you. It should be now working.
Andrew (Digitwell) said: Yes, it is but what size should I use? Click to expand... you dont need a size, the view do it for you. It should be now working.
Alexander Stolte Expert Licensed User Longtime User Mar 26, 2020 #56 If it not working then try a LoabBitmapResize size <25dip (smaller than 25dip) and let me know.
Jorge M A Well-Known Member Licensed User Longtime User Mar 26, 2020 #57 Alexander, Would it be possible to obtain the height of the mBase panel, something like "ASTabMenu_horizontal.Height"? EDIT: I'm testing example in B4J
Alexander, Would it be possible to obtain the height of the mBase panel, something like "ASTabMenu_horizontal.Height"? EDIT: I'm testing example in B4J
Alexander Stolte Expert Licensed User Longtime User Mar 26, 2020 #58 Jorge M A said: to obtain the height of the mBase pane Click to expand... Alexander Stolte said: getBaseView As B4XView gets the mbase Click to expand...
Jorge M A said: to obtain the height of the mBase pane Click to expand... Alexander Stolte said: getBaseView As B4XView gets the mbase Click to expand...
Andrew (Digitwell) Well-Known Member Licensed User Longtime User Mar 26, 2020 #59 That Alexander Stolte said: Important Update 1.07 Icon Size is now smaller Badge Bug Fixing Click to expand... Thanks that's done the trick.
That Alexander Stolte said: Important Update 1.07 Icon Size is now smaller Badge Bug Fixing Click to expand... Thanks that's done the trick.
Jorge M A Well-Known Member Licensed User Longtime User Mar 26, 2020 #60 Alexander Stolte said: getBaseView Click to expand... Oh! ok, Sorry me. I was looking in the members pop-up and does not appear. Thank You!!
Alexander Stolte said: getBaseView Click to expand... Oh! ok, Sorry me. I was looking in the members pop-up and does not appear. Thank You!!