I've created a button with black background, rounded corners, and a white border in the designer. I want to add an image to the button to represent it's function. I've created the image, 3 white lines with a black background. Also tried an image with a transparent background. Loading the image removes the rounded corners and the white border. I've tried a few methods with bitmaps and bitmapdrawables but all result in the corners and border removed. Hopefully someone can point me in the right direction! Thanks in advance.
one method tried:
one method tried:
B4X:
Sub Globals
Public bars3 As BitmapDrawable
End Sub
Activity_Create
bars3.Initialize(LoadBitmap(File.DirAssets, "bars3.png" ))
btnSettings.Background = bars3
End Sub