Hi!
I would like to set some of settings od phone/device programatically.
As far as I could get, was getting this flags, that needs to be changed:
0x18404000
0x18004080
0x18005001
I am doing this in correct way or am I missing something?
Second...
0x18004080,"java.lang.int"... I know that this is wrong. Can you please advise me how to change it?
Thank you!
I would like to set some of settings od phone/device programatically.
As far as I could get, was getting this flags, that needs to be changed:
0x18404000
0x18004080
0x18005001
I am doing this in correct way or am I missing something?
Second...
0x18004080,"java.lang.int"... I know that this is wrong. Can you please advise me how to change it?
B4X:
Dim obj1 As Reflector
'obj1.Target = obj1.GetActivity
obj1.Target = obj1.GetMostCurrent(ActivityName)
obj1.Target = obj1.RunMethod("getWindow")
obj1.RunMethod2("addFlags",0x18004080,"java.lang.int")
'obj1.RunMethod2("clearFlags",0x18004080,"java.lang.int")
Thank you!