Get the current page being viewed in the browser (

2019-05-21 14:36发布

问题:

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.

回答1:

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.



回答2:

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.