Get the current page being viewed in the browser (

2019-05-21 14:38发布

I would like to know Is it possible for me as an android developer to know if the browser app is currently open, and if it is, what page is being viewed? (URL?)

If so, how would I go about doing this? If not, I would also love to know so I wouldn't search anymore.

Thanks, Omri.

2条回答
ら.Afraid
2楼-- · 2019-05-21 14:58

I don't know, is it possible or not, to know if the browser app is currently open.

But, yes, you can get the page that is viewed. That is all the pages searched, browsed or bookmarked. And then, using that url, you can get the page.

Luckily I have done an application to parse html of page in browser.
The code to get the url of last page viewed in browser is:

Cursor c1 = Browser.getAllVisitedUrls(getContentResolver());    
Cursor c2 = Browser.getAllBookmarks(getContentResolver());    
c1.moveToFirst();    
c1.moveToPosition((c1.getCount() - c2.getCount()) - 1);    
String url = c1.getString(0);   
c1.close();   
c2.close();   

Url is what you needed.

查看更多
▲ chillily
3楼-- · 2019-05-21 15:08

Hello, I would like to know Is it possible for me as an android developer to know if the browser app is currently open, and if it is, what page is being viewed?

No, that is not possible -- it would be a privacy violation.

查看更多
登录 后发表回答