D drfjm Member Licensed User Longtime User Dec 7, 2012 #1 I try to start the application with a green background. I used Activity.Color="#060" but it does not function. Does anybody know the correct instruction? Your help will be apprciated.
I try to start the application with a green background. I used Activity.Color="#060" but it does not function. Does anybody know the correct instruction? Your help will be apprciated.
Q Quillok Member Licensed User Longtime User Dec 7, 2012 #2 You should use B4X: Activity.Color = Colors.Green or if you want to set the exact rgb-values: B4X: Activity.Color = Colors.RGB(0,255,0) 'green Upvote 0
You should use B4X: Activity.Color = Colors.Green or if you want to set the exact rgb-values: B4X: Activity.Color = Colors.RGB(0,255,0) 'green
M Mahares Expert Licensed User Longtime User Dec 7, 2012 #3 You can also use something like this: B4X: Activity.Color=Colors.RGB(0x00,0x60,0x00) Upvote 0
D drfjm Member Licensed User Longtime User Dec 8, 2012 #5 Problem solved, thank you for your help Upvote 0