Add Open in browser option to long-press menu
Add Open in browser option to long-press menu when long pressing a stream and a subscription
This commit is contained in:
parent
ae943c5de0
commit
5bcd91b3c4
3 changed files with 9 additions and 4 deletions
|
|
@ -87,7 +87,10 @@ public enum StreamDialogEntry {
|
|||
}),
|
||||
|
||||
share(R.string.share, (fragment, item) ->
|
||||
ShareUtils.shareText(fragment.getContext(), item.getName(), item.getUrl()));
|
||||
ShareUtils.shareText(fragment.getContext(), item.getName(), item.getUrl())),
|
||||
|
||||
open_in_browser(R.string.open_in_browser, (fragment, item) ->
|
||||
ShareUtils.openUrlInBrowser(fragment.getContext(), item.getUrl()));
|
||||
|
||||
|
||||
///////////////
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue