This site permanently moved to
https://droidscript.github.io
. Please update links accordingly.
You are being forwarded automatically in 3...
[stay here]
Back
SetBackColor
JS
Py
Hello World
Changes the background color of the app.
app.SetBackColor(
color
)
Example - Blue Background
click to expand contents
function
OnStart
(
)
{
app
.
SetBackColor
(
"blue"
)
;
}
from
native
import
app
def
OnStart
(
)
:
app
.
SetBackColor
(
"blue"
)
Copy All
Run
String:
hexadecimal:
“#rrggbb”
,
“#aarrggbb”
colourName:
“red”
,
“green”
, ...
loading