S Scantech Well-Known Member Licensed User Longtime User Mar 21, 2019 #1 How do i add material icons in label at runtime. I want to use menu image.
Jorge M A Well-Known Member Licensed User Longtime User Mar 21, 2019 #2 I think you can get all ideas from @Erel's code snippet from here^. Upvote 0
DonManfred Expert Licensed User Longtime User Mar 21, 2019 #3 B4X: Dim lbl As Label lbl.Initialize("Label") Activity.AddView(lbl,0,100dip,100%x,100dip) lbl.Typeface = Typeface.MATERIALICONS lbl.TextSize = 50 lbl.TextColor = Colors.Red lbl.Text = Chr(0xe84f) Upvote 0
B4X: Dim lbl As Label lbl.Initialize("Label") Activity.AddView(lbl,0,100dip,100%x,100dip) lbl.Typeface = Typeface.MATERIALICONS lbl.TextSize = 50 lbl.TextColor = Colors.Red lbl.Text = Chr(0xe84f)