开发者

Get the current page being viewed in the browser (Possible?)

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开发者_StackOverflow this? If not, I would also love to know so I wouldn't search anymore.

Thanks, Omri.


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.


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.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜