Hi everyone my app has a very light color as primary color and the text in the statusbar is not visible anymore because it is white.
I wish to set it to dark in order to be readable
This is my Manifest, i tried different combination of themes, but maybe i'm not doing the right thing...
A Dark theme for the IDE env. The theme is matched to my taste of colors :) so i hope others will like it too.
To use, download the file and unzip it in the folder below:
C: \ Program Files (x86) \ Anywhere Software \ Basic4android \ Themes
In the IDE, open the Tools / IDE options / Themes...
Hi i'm learning how to use the tableview in the best way.
I'm trying to do a settings page like the ios one, with elements that opens other pages.
Sub Process_Globals
Public App As Application
Public NavControl As NavigationController
Private Page1 As Page
Private Panel1 As...
This Code is a convert from this Stackoverflow thread.
Private Sub isColorDark(color As Int) As Boolean
Dim darkness As Int = 1 - (0.299 * GetARGB(color)(1) + 0.587 * GetARGB(color)(2) + 0.114 * GetARGB(color)(3))/255
If darkness <= 0.5 Then
Return False 'It's a...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.