Nilesh
Nilesh

Reputation: 165

Android,How to Block URL in any Browser Programmatically?

i wanted to Block URLs access from Browser in Android How i can do this without creating custom or own browser.

Upvotes: 5

Views: 3023

Answers (1)

Semanticer
Semanticer

Reputation: 1982

You can do this using the AccessibilityService

Take a look at this answer https://stackoverflow.com/a/64481011/509681

Instead of opening a new browser tab, you could just display some blocking overlay UI.

Upvotes: 3

Related Questions