PhoneCalls without notifications.

BaGRoS

Active Member
Licensed User
Longtime User
How make this:

Dim p As PhoneCalls
StartActivity(p.Call("888999888"))

Without notice. Phone quietly that the thief did not know that it is made.
 

MrRey

Member
Licensed User
Longtime User
I say don't hide it. You can make the phone call, thus connecting to the tower. Let the thief know.
 
Upvote 0

bsnqt

Active Member
Licensed User
Longtime User
How make this:

Dim p As PhoneCalls
StartActivity(p.Call("888999888"))

Without notice. Phone quietly that the thief did not know that it is made.

Maybe you need to do a workaround, let say cover the phonepad by your black-color activity (topmost mode) or right after dialing then you can simulate programmatically a keyhome press, that will hopefully hide the calling phonepad. However if he (the thief) looks at the screen carefully he may still notice that there is an calling icon in the status bar.

Hope this help.

Dim i As Intent
i.Initialize(i.ACTION_MAIN, "")
i.AddCategory("android.intent.category.HOME")
i.Flags = 268435456
StartActivity(i)
 
Last edited:
Upvote 0
Cookies are required to use this site. You must accept them to continue using the site. Learn more…