Get Last Visited URL in Chrome and other browser's

前端 未结 1 1377
说谎
说谎 2021-01-01 01:18

I want to get last visited URL in chrome and other browser\'s. I am able to get Last URL in android Native browser. I use following code for this -

Cursor c         


        
相关标签:
1条回答
  • 2021-01-01 01:32

    For chrome, you can use this uri:

    Uri chromeUri = Uri.parse("content://com.android.chrome.browser/bookmarks");
    

    Column names for URL and date are the same: "url" and "date".

    For other browsers, as it is said here, there is no common solution and, probably, BOOKMARKS_URI won't work.

    0 讨论(0)
提交回复
热议问题